99 lines
3.1 KiB
Python
99 lines
3.1 KiB
Python
"""
|
|
Support for monitoring an Neurio hub.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/sensor.neurio_energy/
|
|
"""
|
|
import logging
|
|
|
|
import requests.exceptions
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components.sensor import PLATFORM_SCHEMA
|
|
from homeassistant.const import (CONF_API_KEY, CONF_NAME)
|
|
from homeassistant.helpers.entity import Entity
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
REQUIREMENTS = ['neurio==0.2.10']
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
CONF_API_SECRET = 'api_secret'
|
|
CONF_SENSOR_ID = 'sensor_id'
|
|
|
|
DEFAULT_NAME = 'Energy Usage'
|
|
|
|
ICON = 'mdi:flash'
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|
vol.Required(CONF_API_KEY): cv.string,
|
|
vol.Required(CONF_API_SECRET): cv.string,
|
|
vol.Optional(CONF_SENSOR_ID): cv.string,
|
|
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
|
|
})
|
|
|
|
|
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
|
"""Setup the Neurio sensor."""
|
|
name = config.get(CONF_NAME)
|
|
api_key = config.get(CONF_API_KEY)
|
|
api_secret = config.get(CONF_API_SECRET)
|
|
sensor_id = config.get(CONF_SENSOR_ID)
|
|
|
|
if not sensor_id:
|
|
import neurio
|
|
neurio_tp = neurio.TokenProvider(key=api_key, secret=api_secret)
|
|
neurio_client = neurio.Client(token_provider=neurio_tp)
|
|
user_info = neurio_client.get_user_information()
|
|
_LOGGER.warning('Sensor ID auto-detected, set api_sensor_id: "%s"',
|
|
user_info["locations"][0]["sensors"][0]["sensorId"])
|
|
sensor_id = user_info["locations"][0]["sensors"][0]["sensorId"]
|
|
|
|
add_devices([NeurioEnergy(api_key, api_secret, name, sensor_id)])
|
|
|
|
|
|
class NeurioEnergy(Entity):
|
|
"""Implementation of an Neurio energy."""
|
|
|
|
def __init__(self, api_key, api_secret, name, sensor_id):
|
|
"""Initialize the sensor."""
|
|
self._name = name
|
|
self.api_key = api_key
|
|
self.api_secret = api_secret
|
|
self.sensor_id = sensor_id
|
|
self._state = None
|
|
self._unit_of_measurement = 'W'
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of th sensor."""
|
|
return self._name
|
|
|
|
@property
|
|
def state(self):
|
|
"""Return the state of the sensor."""
|
|
return self._state
|
|
|
|
@property
|
|
def unit_of_measurement(self):
|
|
"""Return the unit of measurement of this entity, if any."""
|
|
return self._unit_of_measurement
|
|
|
|
@property
|
|
def icon(self):
|
|
"""Icon to use in the frontend, if any."""
|
|
return ICON
|
|
|
|
def update(self):
|
|
"""Get the Neurio monitor data from the web service."""
|
|
import neurio
|
|
try:
|
|
neurio_tp = neurio.TokenProvider(
|
|
key=self.api_key, secret=self.api_secret)
|
|
neurio_client = neurio.Client(token_provider=neurio_tp)
|
|
sample = neurio_client.get_samples_live_last(
|
|
sensor_id=self.sensor_id)
|
|
self._state = sample['consumptionPower']
|
|
except (requests.exceptions.RequestException, ValueError):
|
|
_LOGGER.warning('Could not update status for %s', self.name)
|