Handle Centralite Pearl thermostat modes (#37065)

This commit is contained in:
Alexei Chetroi
2020-06-24 17:52:56 -04:00
committed by GitHub
parent 35dc5ba742
commit 47220ae4a6

View File

@@ -587,3 +587,13 @@ class ZenWithinThermostat(Thermostat):
if self.hvac_mode != HVAC_MODE_OFF: if self.hvac_mode != HVAC_MODE_OFF:
return CURRENT_HVAC_IDLE return CURRENT_HVAC_IDLE
return CURRENT_HVAC_OFF return CURRENT_HVAC_OFF
@STRICT_MATCH(
channel_names=CHANNEL_THERMOSTAT,
aux_channels=CHANNEL_FAN,
manufacturers="Centralite",
models="3157100",
)
class CentralitePearl(ZenWithinThermostat):
"""Centralite Pearl Thermostat implementation."""