homebridge-airly-v2
v1.1.7
Published
Homebridge plugin for showing air condition data
Downloads
1
Maintainers
Readme
Homebridge-airly-v2
Homebridge plugin that is showing information about air quality from Airly API.
Project is based on homebridge-airly and homebridge-weather and homebridge-arinow.
Currently Airly is supporting only Polish localizations.
Instalation
- Install Homebridge using:
(sudo) npm install -g --unsafe-perm homebridge
. - Install this plugin using:
(sudo) npm install -g homebridge-airly-v2
. - Get API Key from Airly. Login here https://developer.airly.eu/login and generate it.
- Find out your coordinates (latitude and longitude). Based on that information Airly will show measurements from nearest sensor. You can use this page https://www.latlong.net/.
- Update your configuration file like the example below.
This plugin is returning data such as: AQI (Air Quality Index), PM2.5, PM10.
Configuration
Example config.json
"accessories": [
{
"accessory": "Air",
"apikey": "YOUR_API_KEY",
"latitude": "YOUR_LATITUDE",
"longitude": "YOUR_LONGITUDE",
"name": "Airly Air Quality"
}
]
Config file
Fields:
accessory
must be "Air" (required).apikey
API key from Airly Developers (required).latitude
String with your latitude e.g."52.229676"
(required).longitude
String with your longitude e.g."21.012229"
(required).name
Is the name of accessory (required).