This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2022-12-24 21:09:10 +01:00

40 lines
1.0 KiB
JSON

{
"description": "The thermostat interface describes devices which have a target temperature value and regulate themselves to match that target temperature.",
"states": [
{
"name": "targetTemperature",
"type": "double",
"unit": "DegreeCelsius",
"minValue": "any",
"maxValue": "any",
"writable": true,
"logged": true
},
{
"name": "temperature",
"type": "double",
"unit": "DegreeCelsius",
"optional": true,
"logged": true
},
{
"name": "heatingOn",
"type": "bool",
"optional": true,
"logged": true
},
{
"name": "coolingOn",
"type": "bool",
"optional": true,
"logged": true
},
{
"name": "boost",
"type": "bool",
"optional": true,
"logged": true
}
]
}