We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1eb217 commit 745d0d8Copy full SHA for 745d0d8
custom_components/plugwise/climate.py
@@ -75,15 +75,7 @@ def _add_entities() -> None:
75
gateway_name = coordinator.api.smile.name
76
for device_id in coordinator.new_devices:
77
device = coordinator.data[device_id]
78
- if gateway_name in ("Adam", "Smile Anna"):
79
- if device[DEV_CLASS] == "climate":
80
- entities.append(
81
- PlugwiseClimateEntity(
82
- coordinator, device_id, homekit_enabled
83
- ) # pw-beta homekit emulation
84
- )
85
- LOGGER.debug("Add climate %s", device[ATTR_NAME])
86
- elif device[DEV_CLASS] in MASTER_THERMOSTATS:
+ if device[DEV_CLASS] == "climate":
87
entities.append(
88
PlugwiseClimateEntity(
89
coordinator, device_id, homekit_enabled
0 commit comments