You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please add simple change to the climate.py ( /config/custom_components/localtuya/climate.py )
in HVAC_ACTION_SETS below set of options
"1/0": {
HVACAction.HEATING: "1",
HVACAction.IDLE: "0",
},
Many Avatto Thermostats need this set of values for proper state in local tuya ( heating , not heating )
For example: AVATTO WT50-EH
And YES values are string type "0" and "1"
In every update when you are making changes in climate.py I must edit this file and add this option . Otherwise i cannot check state of that thermostat.
Hi
Please add simple change to the climate.py ( /config/custom_components/localtuya/climate.py )
in HVAC_ACTION_SETS below set of options
"1/0": {
HVACAction.HEATING: "1",
HVACAction.IDLE: "0",
},
Many Avatto Thermostats need this set of values for proper state in local tuya ( heating , not heating )
For example: AVATTO WT50-EH
And YES values are string type "0" and "1"
In every update when you are making changes in climate.py I must edit this file and add this option . Otherwise i cannot check state of that thermostat.
My climate.py HVAC_ACTION_SETS below:
HVAC_ACTION_SETS = {
"True/False": {
HVACAction.HEATING: True,
HVACAction.IDLE: False,
},
"open/close": {
HVACAction.HEATING: "open",
HVACAction.IDLE: "close",
},
"heating/no_heating": {
HVACAction.HEATING: "heating",
HVACAction.IDLE: "no_heating",
},
"Heat/Warming": {
HVACAction.HEATING: "Heat",
HVACAction.IDLE: "Warming",
},
"heating/warming": {
HVACAction.HEATING: "heating",
HVACAction.IDLE: "warming",
},
"1/0": {
HVACAction.HEATING: "1",
HVACAction.IDLE: "0",
},
}
Thank You
The text was updated successfully, but these errors were encountered: