Update zwave climate mappings (#25327)
hvac_action should be idle when thermostat is in Pending Heat or Pending Cool.
This commit is contained in:
parent
97a13bdcd4
commit
5e29d4d098
1 changed files with 2 additions and 2 deletions
|
@ -49,10 +49,10 @@ HVAC_STATE_MAPPINGS = {
|
||||||
HVAC_CURRENT_MAPPINGS = {
|
HVAC_CURRENT_MAPPINGS = {
|
||||||
"Idle": CURRENT_HVAC_IDLE,
|
"Idle": CURRENT_HVAC_IDLE,
|
||||||
"Heat": CURRENT_HVAC_HEAT,
|
"Heat": CURRENT_HVAC_HEAT,
|
||||||
"Pending Heat": CURRENT_HVAC_HEAT,
|
"Pending Heat": CURRENT_HVAC_IDLE,
|
||||||
"Heating": CURRENT_HVAC_HEAT,
|
"Heating": CURRENT_HVAC_HEAT,
|
||||||
"Cool": CURRENT_HVAC_COOL,
|
"Cool": CURRENT_HVAC_COOL,
|
||||||
"Pending Cool": CURRENT_HVAC_COOL,
|
"Pending Cool": CURRENT_HVAC_IDLE,
|
||||||
"Cooling": CURRENT_HVAC_COOL,
|
"Cooling": CURRENT_HVAC_COOL,
|
||||||
"Fan Only": CURRENT_HVAC_FAN,
|
"Fan Only": CURRENT_HVAC_FAN,
|
||||||
"Vent / Economiser": CURRENT_HVAC_FAN,
|
"Vent / Economiser": CURRENT_HVAC_FAN,
|
||||||
|
|
Loading…
Add table
Reference in a new issue