-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.conf.example
More file actions
52 lines (40 loc) · 1.7 KB
/
deploy.conf.example
File metadata and controls
52 lines (40 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# HyperCalibrate Deployment Configuration
# Copy this file to deploy.conf and customize for your setup
#===============================================================================
# Raspberry Pi Connection (HyperBian defaults)
#===============================================================================
# IP address of your Raspberry Pi
# Can also be a hostname like "hyperbian.local"
PI_IP=192.168.1.100
# SSH credentials (HyperBian defaults)
PI_USER=hyperion
PI_PASS=ambientlight
PI_PORT=22
#===============================================================================
# Video Device Configuration
#===============================================================================
# Input camera device (your USB camera)
# Run 'v4l2-ctl --list-devices' on the Pi to see available devices
INPUT_DEVICE=/dev/video0
# Output virtual camera device (for Hyperion to use)
# This will be created by v4l2loopback
OUTPUT_DEVICE=/dev/video10
# Capture resolution (lower = faster, but less detail for calibration)
CAPTURE_WIDTH=640
CAPTURE_HEIGHT=480
CAPTURE_FPS=30
#===============================================================================
# Web Server Configuration
#===============================================================================
# Port for the calibration web UI
# Access at http://<pi-ip>:<port>
WEB_PORT=8091
# Bind address (0.0.0.0 = all interfaces)
WEB_HOST=0.0.0.0
#===============================================================================
# Build Configuration
#===============================================================================
# Target architecture
# aarch64 = 64-bit (Raspberry Pi 4/5, recommended)
# armv7 = 32-bit (Raspberry Pi 2/3, older systems)
TARGET_ARCH=aarch64