mirror of https://github.com/nymea/nymea.git
25 lines
687 B
JSON
25 lines
687 B
JSON
{
|
|
"description": "Air quality sensors. Describes the current quality of the air. As air quality index the PM2.5 measurment (particles pollution level) will be used.",
|
|
"extends": "sensor",
|
|
"states": [
|
|
{
|
|
"name": "airQuality",
|
|
"type": "QString",
|
|
"logged": true,
|
|
"possibleValues": [
|
|
"Good",
|
|
"Moderate",
|
|
"Unhealthy for Sensitive Groups",
|
|
"Unhealthy",
|
|
"Very unhealthy",
|
|
"Hazardous"
|
|
]
|
|
},
|
|
{
|
|
"name": "airQualityIndex",
|
|
"type": "uint",
|
|
"logged": true
|
|
}
|
|
]
|
|
}
|