Simple heating/cooling devices are more different to thermostats than one would think at first. This splits heating and thermostat interfaces into two unrelated interfaces and adds a generic cooling interface for simple on/off air conditioners.
16 lines
348 B
JSON
16 lines
348 B
JSON
{
|
|
"description": "The heating interface defines basic heating appliances.",
|
|
"extends": "power",
|
|
"states": [
|
|
{
|
|
"name": "percentage",
|
|
"type": "int",
|
|
"min": 0,
|
|
"max": 100,
|
|
"unit": "Percentage",
|
|
"writable": true,
|
|
"optional": true
|
|
}
|
|
]
|
|
}
|