From 5e29d4d098e04aa5867fbae6359d001f000e73e6 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 18cacf3b8a0..f7d31bf764f 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,