2019-03-30 17:49:59 +00:00
|
|
|
"""Support for Ampio Air Quality data."""
|
|
|
|
from datetime import timedelta
|
|
|
|
import logging
|
|
|
|
|
2019-10-17 13:00:00 +00:00
|
|
|
from asmog import AmpioSmog
|
2019-03-30 17:49:59 +00:00
|
|
|
import voluptuous as vol
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
from homeassistant.components.air_quality import PLATFORM_SCHEMA, AirQualityEntity
|
2019-03-30 17:49:59 +00:00
|
|
|
from homeassistant.const import CONF_NAME
|
|
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
from homeassistant.util import Throttle
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
ATTRIBUTION = "Data provided by Ampio"
|
|
|
|
CONF_STATION_ID = "station_id"
|
2019-03-30 17:49:59 +00:00
|
|
|
SCAN_INTERVAL = timedelta(minutes=10)
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(
|
|
|
|
{vol.Required(CONF_STATION_ID): cv.string, vol.Optional(CONF_NAME): cv.string}
|
|
|
|
)
|
2019-03-30 17:49:59 +00:00
|
|
|
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
async def async_setup_platform(hass, config, async_add_entities, discovery_info=None):
|
2019-03-30 17:49:59 +00:00
|
|
|
"""Set up the Ampio Smog air quality platform."""
|
|
|
|
|
|
|
|
name = config.get(CONF_NAME)
|
|
|
|
station_id = config[CONF_STATION_ID]
|
|
|
|
|
|
|
|
session = async_get_clientsession(hass)
|
|
|
|
api = AmpioSmogMapData(AmpioSmog(station_id, hass.loop, session))
|
|
|
|
|
|
|
|
await api.async_update()
|
|
|
|
|
|
|
|
if not api.api.data:
|
|
|
|
_LOGGER.error("Station %s is not available", station_id)
|
|
|
|
return
|
|
|
|
|
|
|
|
async_add_entities([AmpioSmogQuality(api, station_id, name)], True)
|
|
|
|
|
|
|
|
|
|
|
|
class AmpioSmogQuality(AirQualityEntity):
|
|
|
|
"""Implementation of an Ampio Smog air quality entity."""
|
|
|
|
|
|
|
|
def __init__(self, api, station_id, name):
|
|
|
|
"""Initialize the air quality entity."""
|
|
|
|
self._ampio = api
|
|
|
|
self._station_id = station_id
|
|
|
|
self._name = name or api.api.name
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
"""Return the name of the air quality entity."""
|
|
|
|
return self._name
|
|
|
|
|
|
|
|
@property
|
|
|
|
def unique_id(self):
|
|
|
|
"""Return unique_name."""
|
2019-09-03 14:11:36 +00:00
|
|
|
return f"ampio_smog_{self._station_id}"
|
2019-03-30 17:49:59 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def particulate_matter_2_5(self):
|
|
|
|
"""Return the particulate matter 2.5 level."""
|
|
|
|
return self._ampio.api.pm2_5
|
|
|
|
|
|
|
|
@property
|
|
|
|
def particulate_matter_10(self):
|
|
|
|
"""Return the particulate matter 10 level."""
|
|
|
|
return self._ampio.api.pm10
|
|
|
|
|
|
|
|
@property
|
|
|
|
def attribution(self):
|
|
|
|
"""Return the attribution."""
|
|
|
|
return ATTRIBUTION
|
|
|
|
|
|
|
|
async def async_update(self):
|
|
|
|
"""Get the latest data from the AmpioMap API."""
|
|
|
|
await self._ampio.async_update()
|
|
|
|
|
|
|
|
|
|
|
|
class AmpioSmogMapData:
|
|
|
|
"""Get the latest data and update the states."""
|
|
|
|
|
|
|
|
def __init__(self, api):
|
|
|
|
"""Initialize the data object."""
|
|
|
|
self.api = api
|
|
|
|
|
|
|
|
@Throttle(SCAN_INTERVAL)
|
|
|
|
async def async_update(self):
|
|
|
|
"""Get the latest data from AmpioMap."""
|
|
|
|
await self.api.get_data()
|