mirror of https://github.com/nymea/nymea.git
25 lines
676 B
JSON
25 lines
676 B
JSON
{
|
|
"description": "Indoor air quality sensors. Describes the current quality of the air in a room. As air quality index the Volatile organic compounds (VOC) measurment will be used.",
|
|
"extends": "sensor",
|
|
"states": [
|
|
{
|
|
"name": "indoorAirQuality",
|
|
"type": "QString",
|
|
"logged": true,
|
|
"possibleValues": [
|
|
"Excellent",
|
|
"Good",
|
|
"Moderate",
|
|
"Poor",
|
|
"Unhealthy"
|
|
]
|
|
},
|
|
{
|
|
"name": "voc",
|
|
"type": "uint",
|
|
"unit": "PartsPerMillion",
|
|
"logged": true
|
|
}
|
|
]
|
|
}
|