2024-11-05 13:36:07 +01:00
|
|
|
export MQTT_BROKER="172.23.1.102"
|
|
|
|
export MQTT_PORT=1883
|
2024-11-05 21:37:41 +01:00
|
|
|
export MQTT_CLIENT_PREFIX="MyMQTTClient"
|
2024-11-05 13:36:07 +01:00
|
|
|
export MQTT_BOX_TOPIC_PREFIXES='{
|
|
|
|
"high_temp": "heating/config/high_temp/",
|
|
|
|
"cmd": "heating/command/"
|
|
|
|
}'
|
|
|
|
export MQTT_CENTRAL_TOPICS='{
|
|
|
|
"general_off": "heating/system/general_off",
|
2024-11-06 14:13:37 +01:00
|
|
|
"maintenance_mode": "heating/system/maintenance_mode",
|
|
|
|
"status": "heating/system/status"
|
2024-11-05 13:36:07 +01:00
|
|
|
}'
|
2024-11-06 14:13:37 +01:00
|
|
|
export MQTT_STATUS_TOPIC="heating/status"
|
2024-11-05 21:37:41 +01:00
|
|
|
export OFF_TEMPERATURE="5.0"
|
|
|
|
export LOW_TEMPERATURE="15.0"
|
2024-11-06 14:13:37 +01:00
|
|
|
export DEFAULT_HIGH_TEMPERATURE="21.0"
|
2024-11-05 21:37:41 +01:00
|
|
|
export MAINTENANCE_TEMPERATURE="30.0"
|
|
|
|
export BOXES='{
|
|
|
|
"box1": {
|
|
|
|
"label": "living_room",
|
|
|
|
"windows": [
|
2024-11-06 14:27:40 +01:00
|
|
|
{ "topic": "window/living_room/street_side", "label": "street_side" },
|
|
|
|
{ "topic": "window/living_room/garden_side", "label": "garden_side" }
|
2024-11-05 21:37:41 +01:00
|
|
|
],
|
|
|
|
"output_topic": "output/living_room"
|
|
|
|
},
|
|
|
|
"box2": {
|
|
|
|
"label": "kitchen",
|
|
|
|
"windows": [
|
2024-11-06 14:27:40 +01:00
|
|
|
{ "topic": "window/kitchen/street_side", "label": "street_side" },
|
|
|
|
{ "topic": "window/kitchen/garden_side", "label": "garden_side" },
|
|
|
|
{ "topic": "window/kitchen/garden_door", "label": "garden_door" }
|
2024-11-05 21:37:41 +01:00
|
|
|
],
|
|
|
|
"output_topic": "output/kitchen"
|
|
|
|
}
|
|
|
|
}'
|