24 lines
638 B
Plaintext
Raw Normal View History

2024-11-05 13:36:07 +01:00
export MQTT_BROKER="172.23.1.102"
export MQTT_PORT=1883
export MQTT_BOXES='{
"box1": {
2024-11-05 15:53:03 +01:00
"label": "living_room",
"windows": [ "street_side", "garden_side" ]
2024-11-05 13:36:07 +01:00
},
"box2": {
2024-11-05 15:53:03 +01:00
"label": "kitchen",
"windows": [ "street_side", "garden_side", "garden_door" ]
2024-11-05 13:36:07 +01:00
}
}'
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/"