101 lines
3.8 KiB
YAML
Raw Permalink Normal View History

apiVersion: v1
kind: ConfigMap
metadata:
name: heating-controller-config
namespace: homea
data:
MQTT_BROKER: "emqx01-anonymous-cluster-internal.broker.svc.cluster.local"
MQTT_PORT: "1883"
MQTT_CLIENT_PREFIX: "HeatingController"
MQTT_BOX_TOPIC_PREFIXES: |
{
"high_temp": "heating/config/high_temp/",
2024-11-07 20:02:03 +01:00
"overwrite_window": "heating/overwrite_window/",
"cmd": "heating/command/"
}
MQTT_CENTRAL_TOPICS: |
{
"general_off": "heating/system/general_off",
"maintenance_mode": "heating/system/maintenance_mode",
"status": "heating/system/status"
}
MQTT_STATUS_TOPIC: "heating/status"
2024-11-07 22:15:20 +01:00
MQTT_CONTEXT_TOPIC_PREFIX: "heating/context/"
OFF_TEMPERATURE: "5.0"
LOW_TEMPERATURE: "15.0"
DEFAULT_HIGH_TEMPERATURE: "21.0"
MAINTENANCE_TEMPERATURE: "30.0"
BOXES: |
{
2024-11-07 14:30:53 +01:00
"patty": {
"label": "patty",
"windows": [
2024-11-12 12:01:13 +01:00
{ "topic": "homegear/instance1/plain/18/1/STATE", "label": "Garten rechts", "converter": "max" },
{ "topic": "homegear/instance1/plain/22/1/STATE", "label": "Garten links", "converter": "max" }
],
2024-11-12 12:01:13 +01:00
"output_topic": "heating/homegear/instance1/set/39/1/SET_TEMPERATURE",
"output_converter": "max"
},
2024-11-07 14:30:53 +01:00
"kueche": {
"label": "kueche",
"windows": [
2024-11-12 12:01:13 +01:00
{ "topic": "homegear/instance1/plain/37/1/STATE", "label": "Garten Fenster", "converter": "max" },
{ "topic": "homegear/instance1/plain/36/1/STATE", "label": "Garten Tuer", "converter": "max" },
{ "topic": "homegear/instance1/plain/38/1/STATE", "label": "Strasse rechts", "converter": "max" },
{ "topic": "homegear/instance1/plain/13/1/STATE", "label": "Strasse links", "converter": "max" }
],
2024-11-12 12:01:13 +01:00
"output_topic": "heating/homegear/instance1/set/40/1/SET_TEMPERATURE",
"output_converter": "max"
},
2024-11-07 14:30:53 +01:00
"bad_oben": {
"label": "bad_oben",
"windows": [
],
2024-11-12 12:01:13 +01:00
"output_topic": "heating/homegear/instance1/set/41/1/SET_TEMPERATURE",
"output_converter": "max"
},
2024-11-07 14:30:53 +01:00
"schlafzimmer": {
"label": "schlafzimmer",
"windows": [
2024-11-12 12:01:13 +01:00
{ "topic": "homegear/instance1/plain/52/1/STATE", "label": "Strasse", "converter": "max" }
],
2024-11-12 12:01:13 +01:00
"output_topic": "heating/homegear/instance1/set/42/1/SET_TEMPERATURE",
"output_converter": "max"
},
2024-11-07 14:30:53 +01:00
"wolfgang": {
"label": "wolfgang",
"windows": [
2024-11-12 12:01:13 +01:00
{ "topic": "homegear/instance1/plain/24/1/STATE", "label": "Garten", "converter": "max" }
],
2024-11-12 12:01:13 +01:00
"output_topic": "heating/homegear/instance1/set/43/1/SET_TEMPERATURE",
"output_converter": "max"
},
2024-11-07 14:30:53 +01:00
"esszimmer": {
"label": "esszimmer",
"windows": [
2024-11-12 12:01:13 +01:00
{ "topic": "homegear/instance1/plain/26/1/STATE", "label": "Strasse rechts", "converter": "max" },
{ "topic": "homegear/instance1/plain/27/1/STATE", "label": "Strasse links", "converter": "max" }
],
2024-11-12 12:01:13 +01:00
"output_topic": "heating/homegear/instance1/set/45/1/SET_TEMPERATURE",
"output_converter": "max"
},
2024-11-07 14:30:53 +01:00
"wohnzimmer": {
"label": "wohnzimmer",
"windows": [
2024-11-12 12:01:13 +01:00
{ "topic": "homegear/instance1/plain/28/1/STATE", "label": "Garten rechts", "converter": "max" },
{ "topic": "homegear/instance1/plain/29/1/STATE", "label": "Garten links", "converter": "max" }
],
2024-11-12 12:01:13 +01:00
"output_topic": "heating/homegear/instance1/set/46/1/SET_TEMPERATURE",
"output_converter": "max"
},
2024-11-07 14:30:53 +01:00
"bad_unten": {
"label": "bad_unten",
"windows": [
2024-11-12 12:01:13 +01:00
{ "topic": "homegear/instance1/plain/44/1/STATE", "label": "Strasse", "converter": "max" }
],
2024-11-12 12:01:13 +01:00
"output_topic": "heating/homegear/instance1/set/48/1/SET_TEMPERATURE",
"output_converter": "max"
}
}