44 lines
1.3 KiB
Plaintext
Raw Permalink Normal View History

2024-11-05 13:36:07 +01:00
export MQTT_BROKER="172.23.1.102"
export MQTT_PORT=1883
export MQTT_CLIENT_PREFIX="MyMQTTClient"
2024-11-18 14:17:31 +01:00
export BOX_TOPIC_PREFIXES='{
"high_temp": "xheating/config/high_temp/",
"cmd": "xheating/command/"
2024-11-05 13:36:07 +01:00
}'
2024-11-18 14:17:31 +01:00
export CENTRAL_TOPICS='{
"general_off": "xheating/system/general_off",
"maintenance_mode": "xheating/system/maintenance_mode",
"status": "xheating/system/status"
2024-11-05 13:36:07 +01:00
}'
2024-11-18 14:17:31 +01:00
export CONTEXT_TOPIC_PREFIX='xheating/context/'
export STATUS_TOPIC="heating/status"
export OFF_TEMPERATURE="5.0"
export LOW_TEMPERATURE="15.0"
2024-11-06 14:13:37 +01:00
export DEFAULT_HIGH_TEMPERATURE="21.0"
export MAINTENANCE_TEMPERATURE="30.0"
export BOXES='{
2024-11-18 14:43:47 +01:00
"bla": {
"windows": {
},
"output_converter": "max",
"output_topic": "xoutput/bla"
},
2024-11-18 14:17:31 +01:00
"living_room": {
"windows": {
"street_side": { "topic": "window/living_room/street_side", "converter": "max" },
"garden_side": { "topic": "window/living_room/garden_side", "converter": "max" }
},
"output_converter": "max",
"output_topic": "xoutput/living_room"
},
2024-11-18 14:17:31 +01:00
"kitchen": {
"windows": {
"street_side": { "topic": "window/kitchen/street_side", "converter": "max" },
"garden_side": { "topic": "window/kitchen/garden_side", "converter": "max" },
"garden_door": { "topic": "window/kitchen/garden_door", "converter": "max" }
},
"output_converter": "max",
"output_topic": "xoutput/kitchen"
}
}'