We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4be6c97 commit c630812Copy full SHA for c630812
1 file changed
plugwise/helper.py
@@ -567,6 +567,7 @@ def _get_actuator_functionalities(
567
568
act_item = cast(ActuatorType, item)
569
data[act_item] = temp_dict
570
+ LOGGER.debug("HOI 2 data: %s", data)
571
572
def _get_actuator_mode(
573
self, appliance: etree.Element, entity_id: str, key: str
@@ -862,6 +863,7 @@ def _regulation_control(self, data: GwEntityData) -> None:
862
863
864
Adam: collect the thermostat regulation_control state of a location.
865
"""
866
+ LOGGER.debug("HOI data: %s", data)
867
if (reg_control := data["thermostat"].get("regulation_control")) is not None:
868
data["select_zone_profile"] = reg_control
869
data["zone_profiles"] = ALLOWED_ZONE_PROFILES
0 commit comments