Handle Centralite Pearl thermostat modes (#37065)

pull/37077/head
Alexei Chetroi 2020-06-24 17:52:56 -04:00 committed by GitHub
parent 35dc5ba742
commit 47220ae4a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -587,3 +587,13 @@ class ZenWithinThermostat(Thermostat):
if self.hvac_mode != HVAC_MODE_OFF:
return CURRENT_HVAC_IDLE
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."""