Skip to content

Commit

Permalink
added sk{}.L_spu to TEMP_SENSORS_BY_DOMAIN and sk{}.L_pump to PUMP_PE…
Browse files Browse the repository at this point in the history
…RCENTAGE_SENSORS_BY_DOMAIN (#9)
  • Loading branch information
ckarrie committed Feb 26, 2023
1 parent bbbd4b4 commit f1c4954
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions custom_components/ha_oekofen/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,13 @@
# 'pu', # is % not bool
"ww": ["L_pump"],
"circ": ["L_pummp"],
"sk": ["L_pump"],
# "sk": ["L_pump"], # seems to be percentage
}

PUMP_PERCENTAGE_SENSORS_BY_DOMAIN = {"pu": ["L_pump"]}
PUMP_PERCENTAGE_SENSORS_BY_DOMAIN = {
"pu": ["L_pump"],
"sk": ["L_pump"],
}

TEMP_SENSORS_BY_DOMAIN = {
"system": ["L_ambient"],
Expand All @@ -70,7 +73,8 @@
"L_frt_temp_end",
"L_uw_release",
],
"sk": ["L_koll_temp", "spu_max"],
"sk": ["L_koll_temp", "spu_max", "L_spu"],

}

STATE_SENSORS_BY_DOMAIN = {
Expand Down
2 changes: 1 addition & 1 deletion custom_components/ha_oekofen/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"iot_class": "local_polling",
"codeowners": [],
"requirements": ["oekofen-api==0.0.22"],
"version": "0.0.20"
"version": "0.0.21"
}

0 comments on commit f1c4954

Please sign in to comment.