-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.devcontainer.env.sample
More file actions
41 lines (31 loc) · 1.55 KB
/
.devcontainer.env.sample
File metadata and controls
41 lines (31 loc) · 1.55 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
# MQTT Broker Konfiguration
# Die Adresse des MQTT Brokers (z.B. Mosquitto).
MQTT_HOST=localhost
# Der Port des MQTT Brokers (Standard: 1883).
MQTT_PORT=1883
# Der Benutzername für die Authentifizierung am MQTT Broker.
# Optional: Leer lassen, wenn keine Authentifizierung erforderlich ist.
MQTT_USERNAME=
# Das Passwort für die Authentifizierung am MQTT Broker.
# Optional: Leer lassen, wenn keine Authentifizierung erforderlich ist.
MQTT_PASSWORD=
# Das Basis-Topic (Root-Präfix) für MQTT-Kommunikation.
# Der Code hängt automatisch '/v1' an, um das Basis-Topic zu versionieren (z.B. 'signalduino/v1').
# Nachrichten werden unter $MQTT_TOPIC/v1/state/messages veröffentlicht.
# Befehle werden unter $MQTT_TOPIC/v1/commands/# erwartet.
MQTT_TOPIC=signalduino
# Signalduino Verbindungseinstellungen (für direkte Verwendung in main.py)
# Wähle entweder eine serielle Verbindung ODER eine TCP-Verbindung.
# Serieller Port für die Verbindung zum Signalduino (z.B. /dev/ttyUSB0).
# Wird verwendet, wenn das Skript mit --serial gestartet wird oder um Standardwerte zu setzen.
SIGNALDUINO_SERIAL_PORT=/dev/ttyUSB0
# Baudrate für die serielle Verbindung (Standard: 57600).
SIGNALDUINO_BAUD=57600
# TCP Host für die Verbindung zum Signalduino über Netzwerk (z.B. ESP-Link).
# Wird verwendet, wenn das Skript mit --tcp gestartet wird.
SIGNALDUINO_TCP_HOST=192.168.1.10
# TCP Port für die Verbindung zum Signalduino (Standard: 23).
SIGNALDUINO_TCP_PORT=23
# Logging Level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
# Steuert die Ausführlichkeit der Log-Ausgaben.
LOG_LEVEL=INFO