mirror of https://github.com/nymea/nymea.git
Add optional common states for heat pumps
parent
1b385dd038
commit
e8e66c9b7f
|
|
@ -1,3 +1,33 @@
|
||||||
{
|
{
|
||||||
"description": "The base for all heat pump interfaces. Can be used by the client to filter for heat pumps in the system."
|
"description": "The base for all heat pump interfaces. Can be used by the client to filter for heat pumps in the system."
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "outdoorTemperature",
|
||||||
|
"type": "double",
|
||||||
|
"unit": "DegreeCelsius",
|
||||||
|
"logged": true,
|
||||||
|
"optional": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "hotWaterTemperature",
|
||||||
|
"type": "double",
|
||||||
|
"unit": "DegreeCelsius",
|
||||||
|
"logged": true,
|
||||||
|
"optional": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "returnTemperature",
|
||||||
|
"type": "double",
|
||||||
|
"unit": "DegreeCelsius",
|
||||||
|
"logged": true,
|
||||||
|
"optional": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flowTemperature",
|
||||||
|
"type": "double",
|
||||||
|
"unit": "DegreeCelsius",
|
||||||
|
"logged": true,
|
||||||
|
"optional": true
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue