mirror of
https://github.com/elisspace/core.git
synced 2026-09-22 02:27:52 +00:00
* Tado climate state moved to python-tado * Resolve various incorrect states and add tests for known tado zone states * Write state instead of calling for an update This is a redux of pr #32564 with all of the zone state now moved into python-tado and tests added for the various states. * stale string * add missing undos to dispachers * remove unneeded hass * naming * rearrange * fix water heater, add test * fix water heater, add test * switch hvac mode when changing temp if in auto/off/smart
47 lines
813 B
JSON
47 lines
813 B
JSON
{
|
|
"type" : "AIR_CONDITIONING",
|
|
"HEAT" : {
|
|
"fanSpeeds" : [
|
|
"AUTO",
|
|
"HIGH",
|
|
"MIDDLE",
|
|
"LOW"
|
|
],
|
|
"temperatures" : {
|
|
"celsius" : {
|
|
"max" : 31,
|
|
"step" : 1,
|
|
"min" : 16
|
|
},
|
|
"fahrenheit" : {
|
|
"step" : 1,
|
|
"max" : 88,
|
|
"min" : 61
|
|
}
|
|
}
|
|
},
|
|
"AUTO" : {},
|
|
"DRY" : {},
|
|
"FAN" : {},
|
|
"COOL" : {
|
|
"temperatures" : {
|
|
"celsius" : {
|
|
"min" : 16,
|
|
"step" : 1,
|
|
"max" : 31
|
|
},
|
|
"fahrenheit" : {
|
|
"min" : 61,
|
|
"max" : 88,
|
|
"step" : 1
|
|
}
|
|
},
|
|
"fanSpeeds" : [
|
|
"AUTO",
|
|
"HIGH",
|
|
"MIDDLE",
|
|
"LOW"
|
|
]
|
|
}
|
|
}
|