some code

This commit is contained in:
2024-11-05 13:36:07 +01:00
parent df1176cca4
commit db89541352
4 changed files with 204 additions and 0 deletions

21
env Normal file
View File

@ -0,0 +1,21 @@
export MQTT_BROKER="172.23.1.102"
export MQTT_PORT=1883
export MQTT_BOXES='{
"box1": {
"label": "living_room"
},
"box2": {
"label": "kitchen"
}
}'
export MQTT_BOX_TOPIC_PREFIXES='{
"window": "heating/sensor/window/",
"high_temp": "heating/config/high_temp/",
"cmd": "heating/command/"
}'
export MQTT_CENTRAL_TOPICS='{
"general_off": "heating/system/general_off",
"maintenance_mode": "heating/system/maintenance_mode"
}'
export MQTT_CLIENT_PREFIX="MyMQTTClient"
export MQTT_PUBLISH_PREFIX="output/"