Make heating inherit from power and require min/max values for thermostat's targetTemperature
13 lines
396 B
JSON
13 lines
396 B
JSON
{
|
|
"description": "The thermostat interface describes devices which have a target temperature value and regulate themselves to match that target temperature. Often combined with the power and temperaturesensor interfaces.",
|
|
"states": [
|
|
{
|
|
"name": "targetTemperature",
|
|
"type": "double",
|
|
"unit": "DegreeCelsius",
|
|
"minValue": "any",
|
|
"maxValue": "any"
|
|
}
|
|
]
|
|
}
|