core/homeassistant/components/mfi/sensor.py

116 lines
3.2 KiB
Python
Raw Normal View History

"""Support for Ubiquiti mFi sensors."""
import logging
import requests
import voluptuous as vol
from homeassistant.components.sensor import PLATFORM_SCHEMA
from homeassistant.const import (
CONF_PASSWORD, CONF_USERNAME, TEMP_CELSIUS, STATE_ON, STATE_OFF, CONF_HOST,
CONF_SSL, CONF_VERIFY_SSL, CONF_PORT)
2016-02-19 05:27:50 +00:00
from homeassistant.helpers.entity import Entity
import homeassistant.helpers.config_validation as cv
_LOGGER = logging.getLogger(__name__)
DEFAULT_SSL = True
DEFAULT_VERIFY_SSL = True
DIGITS = {
'volts': 1,
'amps': 1,
'active_power': 0,
'temperature': 1,
}
SENSOR_MODELS = [
'Ubiquiti mFi-THS',
'Ubiquiti mFi-CS',
'Ubiquiti mFi-DS',
'Outlet',
'Input Analog',
'Input Digital',
]
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
vol.Required(CONF_HOST): cv.string,
vol.Required(CONF_USERNAME): cv.string,
vol.Required(CONF_PASSWORD): cv.string,
vol.Optional(CONF_PORT): cv.port,
vol.Optional(CONF_SSL, default=DEFAULT_SSL): cv.boolean,
vol.Optional(CONF_VERIFY_SSL, default=DEFAULT_VERIFY_SSL): cv.boolean,
})
def setup_platform(hass, config, add_entities, discovery_info=None):
"""Set up mFi sensors."""
host = config.get(CONF_HOST)
username = config.get(CONF_USERNAME)
password = config.get(CONF_PASSWORD)
use_tls = config.get(CONF_SSL)
verify_tls = config.get(CONF_VERIFY_SSL)
default_port = 6443 if use_tls else 6080
port = int(config.get(CONF_PORT, default_port))
from mficlient.client import FailedToLogin, MFiClient
try:
client = MFiClient(host, username, password, port=port,
use_tls=use_tls, verify=verify_tls)
except (FailedToLogin, requests.exceptions.ConnectionError) as ex:
_LOGGER.error("Unable to connect to mFi: %s", str(ex))
return False
add_entities(MfiSensor(port, hass)
for device in client.get_devices()
for port in device.ports.values()
if port.model in SENSOR_MODELS)
class MfiSensor(Entity):
2016-03-08 15:46:34 +00:00
"""Representation of a mFi sensor."""
def __init__(self, port, hass):
2016-03-08 15:46:34 +00:00
"""Initialize the sensor."""
self._port = port
self._hass = hass
@property
def name(self):
2016-03-08 15:46:34 +00:00
"""Return the name of th sensor."""
return self._port.label
@property
def state(self):
2016-03-08 15:46:34 +00:00
"""Return the state of the sensor."""
try:
tag = self._port.tag
except ValueError:
tag = None
if tag is None:
return STATE_OFF
if self._port.model == 'Input Digital':
return STATE_ON if self._port.value > 0 else STATE_OFF
digits = DIGITS.get(self._port.tag, 0)
return round(self._port.value, digits)
@property
def unit_of_measurement(self):
2016-03-08 15:46:34 +00:00
"""Return the unit of measurement of this entity, if any."""
try:
tag = self._port.tag
except ValueError:
return 'State'
if tag == 'temperature':
2016-04-20 03:30:44 +00:00
return TEMP_CELSIUS
if tag == 'active_pwr':
return 'Watts'
if self._port.model == 'Input Digital':
return 'State'
return tag
def update(self):
2016-03-08 15:46:34 +00:00
"""Get the latest data."""
self._port.refresh()