configuration and fix concerning window state
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful

This commit is contained in:
2024-11-07 14:19:00 +01:00
parent 7abec12620
commit 39adf907b1
2 changed files with 54 additions and 9 deletions

View File

@ -26,20 +26,65 @@ data:
BOXES: |
{
"box1": {
"label": "living_room",
"label": "patty",
"windows": [
{ "topic": "window/living_room/garden_side", "label": "garden_side" }
{ "topic": "homegear/instance1/plain/18/1/STATE", "label": "Garten rechts" },
{ "topic": "homegear/instance1/plain/22/1/STATE", "label": "Garten links" }
],
"output_topic": "output/living_room"
"output_topic": "heating/homegear/instance1/set/39/1/SET_TEMPERATURE"
},
"box2": {
"label": "kitchen",
"label": "kueche",
"windows": [
{ "topic": "window/kitchen/street_side", "label": "street_side" },
{ "topic": "window/kitchen/garden_side", "label": "garden_side" },
{ "topic": "window/kitchen/garden_door", "label": "garden_door" }
{ "topic": "homegear/instance1/plain/37/1/STATE", "label": "Garten Fenster" },
{ "topic": "homegear/instance1/plain/36/1/STATE", "label": "Garten Tuer" },
{ "topic": "homegear/instance1/plain/38/1/STATE", "label": "Strasse rechts" },
{ "topic": "homegear/instance1/plain/13/1/STATE", "label": "Strasse links" }
],
"output_topic": "output/kitchen"
"output_topic": "heating/homegear/instance1/set/40/1/SET_TEMPERATURE"
},
"box3": {
"label": "bad_oben",
"windows": [
],
"output_topic": "heating/homegear/instance1/set/41/1/SET_TEMPERATURE"
},
"box4": {
"label": "schlafzimmer",
"windows": [
{ "topic": "homegear/instance1/plain/52/1/STATE", "label": "Strasse" }
],
"output_topic": "heating/homegear/instance1/set/42/1/SET_TEMPERATURE"
},
"box5": {
"label": "wolfgang",
"windows": [
{ "topic": "homegear/instance1/plain/24/1/STATE", "label": "Garten" }
],
"output_topic": "heating/homegear/instance1/set/43/1/SET_TEMPERATURE"
},
"box6": {
"label": "esszimmer",
"windows": [
{ "topic": "homegear/instance1/plain/26/1/STATE", "label": "Strasse rechts" },
{ "topic": "homegear/instance1/plain/27/1/STATE", "label": "Strasse links" }
],
"output_topic": "heating/homegear/instance1/set/45/1/SET_TEMPERATURE"
},
"box7": {
"label": "wohnzimmer",
"windows": [
{ "topic": "homegear/instance1/plain/28/1/STATE", "label": "Garten rechts" },
{ "topic": "homegear/instance1/plain/29/1/STATE", "label": "Garten links" }
],
"output_topic": "heating/homegear/instance1/set/46/1/SET_TEMPERATURE"
},
"box8": {
"label": "bad_unten",
"windows": [
{ "topic": "homegear/instance1/plain/44/1/STATE", "label": "Strasse" }
],
"output_topic": "heating/homegear/instance1/set/48/1/SET_TEMPERATURE"
}
}

View File

@ -117,7 +117,7 @@ def process_high_temp(box_name, context, local_context, payload):
return (local_context['output_temperature'], False)
def process_window(box_name, context, local_context, sub_key, payload):
local_context['window_state'][sub_key] = 'closed' if (payload.lower() in ('true', 'close', 'closed')) else 'open'
local_context['window_state'][sub_key] = 'closed' if (payload.lower() in ('false', 'close', 'closed')) else 'open'
_calculate_output_temperature(local_context)
return (local_context['output_temperature'], False)