mirror of https://github.com/nymea/nymea.git
Add a thermostat interface
parent
d73aa0840e
commit
abc39f1bd4
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Reference in New Issue