From 93a65bf5072aa6c2f99b789989120772db56672b Mon Sep 17 00:00:00 2001 From: eyager1 <44526531+eyager1@users.noreply.github.com> Date: Sun, 21 Jul 2019 13:44:15 -0400 Subject: [PATCH] Update zwave climate mappings (#25327) hvac_action should be idle when thermostat is in Pending Heat or Pending Cool. --- homeassistant/components/zwave/climate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/zwave/climate.py b/homeassistant/components/zwave/climate.py index 188f376e753..81195227ee1 100644 --- a/homeassistant/components/zwave/climate.py +++ b/homeassistant/components/zwave/climate.py @@ -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,