/
/
/
1# --- MQTT config ---
2MQTT_HOST={{ mqtt_host }}
3MQTT_PORT={{ mqtt_port }}
4MQTT_USERNAME={{ mqtt_user }}
5MQTT_PASSWORD={{ mqtt_password }}
6MQTT_CLIENT_ID=doorbell-controller
7MQTT_BASE_TOPIC=doorbell/front_door
8
9# --- GPIO config ---
10BUTTON_GPIO={{ button_gpio }}
11LED_GPIO={{ led_gpio }}
12LED_COUNT={{ led_count }}
13LED_BRIGHTNESS={{ led_brightness }}
14
15# --- RTSP config ---
16RTSP_PORT={{ rtsp_port }}
17RTSP_WIDTH={{ image_width }}
18RTSP_HEIGHT={{ image_height }}
19RTSP_FPS={{ image_fps }}
20VIDEO_DEVICE=/dev/video0
21
22