34 lines
989 B
Plaintext
34 lines
989 B
Plaintext
export MQTT_BROKER="172.23.1.102"
|
|
export MQTT_PORT=1883
|
|
export MQTT_CLIENT_PREFIX="MyMQTTClient"
|
|
export MQTT_BOX_TOPIC_PREFIXES='{
|
|
"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 OFF_TEMPERATURE="5.0"
|
|
export LOW_TEMPERATURE="15.0"
|
|
export MAINTENANCE_TEMPERATURE="30.0"
|
|
export BOXES='{
|
|
"box1": {
|
|
"label": "living_room",
|
|
"windows": [
|
|
{ "topic": "street_side_topic", "label": "street_side" },
|
|
{ "topic": "garden_side_topic", "label": "garden_side" }
|
|
],
|
|
"output_topic": "output/living_room"
|
|
},
|
|
"box2": {
|
|
"label": "kitchen",
|
|
"windows": [
|
|
{ "topic": "street_side_topic", "label": "street_side" },
|
|
{ "topic": "garden_side_topic", "label": "garden_side" },
|
|
{ "topic": "garden_door_topic", "label": "garden_door" }
|
|
],
|
|
"output_topic": "output/kitchen"
|
|
}
|
|
}'
|