nymea/libnymea/interfaces/ventilation.json

16 lines
558 B
JSON

{
"description": "The ventilation interface is used for any sort of ventilation. It extends the \"power\" interface and thus can be turned on or off. Optionally, the air flow can be controlled. The thing class must specify the minimum and maximum values for the flow control.",
"extends": "power",
"states": [
{
"name": "flowRate",
"type": "int",
"minValue": "any",
"maxValue": "any",
"writable": true,
"optional": true,
"logged": true
}
]
}