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.
Michael Zanetti 09210d3e6d Add optional boost state to thermostats
nymea:app already implements this and many plugins do too. Apparently
most of the radiator thermostats support this, so it's worth making it
part of the interface.
2022-08-08 12:26:56 +02:00

35 lines
887 B
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
},
{
"name": "temperature",
"type": "double",
"unit": "DegreeCelsius",
"optional": true
},
{
"name": "heatingOn",
"type": "bool",
"optional": true
},
{
"name": "coolingOn",
"type": "bool",
"optional": true
},
{
"name": "boost",
"type": "bool",
"optional": true
}
]
}