Add a thermostat interface

pull/135/head
Michael Zanetti 2019-01-24 22:09:35 +01:00
parent d73aa0840e
commit abc39f1bd4
2 changed files with 11 additions and 0 deletions

View File

@ -31,6 +31,7 @@
<file>moisturesensor.json</file>
<file>conductivitysensor.json</file>
<file>lightsensor.json</file>
<file>thermostat.json</file>
<file>connectable.json</file>
<file>inputtrigger.json</file>
<file>outputtrigger.json</file>

View File

@ -0,0 +1,10 @@
{
"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"
}
]
}