Update zwave climate mappings (#25327)

hvac_action should be idle when thermostat is in Pending Heat or Pending Cool.
This commit is contained in:
eyager1 2019-07-21 13:44:15 -04:00 committed by Paulus Schoutsen
parent 97a13bdcd4
commit 5e29d4d098

View file

@ -49,10 +49,10 @@ HVAC_STATE_MAPPINGS = {
HVAC_CURRENT_MAPPINGS = {
"Idle": CURRENT_HVAC_IDLE,
"Heat": CURRENT_HVAC_HEAT,
"Pending Heat": CURRENT_HVAC_HEAT,
"Pending Heat": CURRENT_HVAC_IDLE,
"Heating": CURRENT_HVAC_HEAT,
"Cool": CURRENT_HVAC_COOL,
"Pending Cool": CURRENT_HVAC_COOL,
"Pending Cool": CURRENT_HVAC_IDLE,
"Cooling": CURRENT_HVAC_COOL,
"Fan Only": CURRENT_HVAC_FAN,
"Vent / Economiser": CURRENT_HVAC_FAN,