38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
export MQTT_BROKER="172.23.1.102"
|
|
export MQTT_PORT=1883
|
|
export MQTT_CLIENT_PREFIX="MyMQTTClient"
|
|
export BOX_TOPIC_PREFIXES='{
|
|
"high_temp": "xheating/config/high_temp/",
|
|
"cmd": "xheating/command/"
|
|
}'
|
|
export CENTRAL_TOPICS='{
|
|
"general_off": "xheating/system/general_off",
|
|
"maintenance_mode": "xheating/system/maintenance_mode",
|
|
"status": "xheating/system/status"
|
|
}'
|
|
export CONTEXT_TOPIC_PREFIX='xheating/context/'
|
|
export STATUS_TOPIC="heating/status"
|
|
export OFF_TEMPERATURE="5.0"
|
|
export LOW_TEMPERATURE="15.0"
|
|
export DEFAULT_HIGH_TEMPERATURE="21.0"
|
|
export MAINTENANCE_TEMPERATURE="30.0"
|
|
export BOXES='{
|
|
"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"
|
|
},
|
|
"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"
|
|
}
|
|
}'
|