Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

climate.py no proper Action Sets for some Devices #1936

Open
KazaiTg opened this issue Feb 16, 2025 · 0 comments
Open

climate.py no proper Action Sets for some Devices #1936

KazaiTg opened this issue Feb 16, 2025 · 0 comments

Comments

@KazaiTg
Copy link

KazaiTg commented Feb 16, 2025

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant