2015-08-19 00:25:05 +00:00
|
|
|
"""
|
2016-02-23 05:21:49 +00:00
|
|
|
Support for MQTT sensors.
|
2015-08-19 00:25:05 +00:00
|
|
|
|
2015-10-21 17:36:52 +00:00
|
|
|
For more details about this platform, please refer to the documentation at
|
2015-11-09 12:12:18 +00:00
|
|
|
https://home-assistant.io/components/sensor.mqtt/
|
2015-08-19 00:25:05 +00:00
|
|
|
"""
|
2017-02-22 08:43:22 +00:00
|
|
|
import asyncio
|
2015-08-19 00:25:05 +00:00
|
|
|
import logging
|
2017-03-23 21:55:07 +00:00
|
|
|
from datetime import timedelta
|
2016-02-19 05:27:50 +00:00
|
|
|
|
2016-04-07 00:32:35 +00:00
|
|
|
import voluptuous as vol
|
|
|
|
|
2016-11-17 15:34:46 +00:00
|
|
|
from homeassistant.core import callback
|
2016-09-09 06:37:30 +00:00
|
|
|
from homeassistant.components.mqtt import CONF_STATE_TOPIC, CONF_QOS
|
2016-08-20 22:40:16 +00:00
|
|
|
from homeassistant.const import (
|
2017-12-09 07:18:45 +00:00
|
|
|
CONF_FORCE_UPDATE, CONF_NAME, CONF_VALUE_TEMPLATE, STATE_UNKNOWN,
|
|
|
|
CONF_UNIT_OF_MEASUREMENT)
|
2016-09-09 06:37:30 +00:00
|
|
|
from homeassistant.helpers.entity import Entity
|
|
|
|
import homeassistant.components.mqtt as mqtt
|
|
|
|
import homeassistant.helpers.config_validation as cv
|
2017-03-23 21:55:07 +00:00
|
|
|
from homeassistant.helpers.event import async_track_point_in_utc_time
|
|
|
|
from homeassistant.util import dt as dt_util
|
2015-08-19 00:25:05 +00:00
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
2017-03-23 21:55:07 +00:00
|
|
|
CONF_EXPIRE_AFTER = 'expire_after'
|
2017-03-11 18:07:52 +00:00
|
|
|
|
2016-09-09 06:37:30 +00:00
|
|
|
DEFAULT_NAME = 'MQTT Sensor'
|
2017-03-11 18:07:52 +00:00
|
|
|
DEFAULT_FORCE_UPDATE = False
|
2016-04-07 00:32:35 +00:00
|
|
|
DEPENDENCIES = ['mqtt']
|
|
|
|
|
2016-04-07 01:35:46 +00:00
|
|
|
PLATFORM_SCHEMA = mqtt.MQTT_RO_PLATFORM_SCHEMA.extend({
|
2016-04-07 00:32:35 +00:00
|
|
|
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
|
|
|
|
vol.Optional(CONF_UNIT_OF_MEASUREMENT): cv.string,
|
2017-03-23 21:55:07 +00:00
|
|
|
vol.Optional(CONF_EXPIRE_AFTER): cv.positive_int,
|
2017-03-11 18:07:52 +00:00
|
|
|
vol.Optional(CONF_FORCE_UPDATE, default=DEFAULT_FORCE_UPDATE): cv.boolean,
|
2016-04-07 00:32:35 +00:00
|
|
|
})
|
2015-08-19 00:25:05 +00:00
|
|
|
|
2015-08-20 22:05:51 +00:00
|
|
|
|
2017-02-22 08:43:22 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def async_setup_platform(hass, config, async_add_devices, discovery_info=None):
|
2017-02-14 07:54:13 +00:00
|
|
|
"""Set up MQTT Sensor."""
|
|
|
|
if discovery_info is not None:
|
|
|
|
config = PLATFORM_SCHEMA(discovery_info)
|
|
|
|
|
2016-09-28 04:29:55 +00:00
|
|
|
value_template = config.get(CONF_VALUE_TEMPLATE)
|
|
|
|
if value_template is not None:
|
|
|
|
value_template.hass = hass
|
2017-02-22 08:43:22 +00:00
|
|
|
|
2017-03-01 04:33:19 +00:00
|
|
|
async_add_devices([MqttSensor(
|
2016-09-09 06:37:30 +00:00
|
|
|
config.get(CONF_NAME),
|
|
|
|
config.get(CONF_STATE_TOPIC),
|
|
|
|
config.get(CONF_QOS),
|
2016-04-07 00:32:35 +00:00
|
|
|
config.get(CONF_UNIT_OF_MEASUREMENT),
|
2017-03-11 18:07:52 +00:00
|
|
|
config.get(CONF_FORCE_UPDATE),
|
2017-03-23 21:55:07 +00:00
|
|
|
config.get(CONF_EXPIRE_AFTER),
|
2016-09-28 04:29:55 +00:00
|
|
|
value_template,
|
2016-04-07 00:32:35 +00:00
|
|
|
)])
|
2015-08-19 00:25:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
class MqttSensor(Entity):
|
2016-03-08 15:46:34 +00:00
|
|
|
"""Representation of a sensor that can be updated using MQTT."""
|
|
|
|
|
2017-02-22 08:43:22 +00:00
|
|
|
def __init__(self, name, state_topic, qos, unit_of_measurement,
|
2017-03-23 21:55:07 +00:00
|
|
|
force_update, expire_after, value_template):
|
2016-03-08 15:46:34 +00:00
|
|
|
"""Initialize the sensor."""
|
2016-02-03 23:54:01 +00:00
|
|
|
self._state = STATE_UNKNOWN
|
2015-08-19 00:25:05 +00:00
|
|
|
self._name = name
|
|
|
|
self._state_topic = state_topic
|
2015-09-07 00:16:31 +00:00
|
|
|
self._qos = qos
|
2015-08-19 00:25:05 +00:00
|
|
|
self._unit_of_measurement = unit_of_measurement
|
2017-03-11 18:07:52 +00:00
|
|
|
self._force_update = force_update
|
2017-02-22 08:43:22 +00:00
|
|
|
self._template = value_template
|
2017-03-23 21:55:07 +00:00
|
|
|
self._expire_after = expire_after
|
|
|
|
self._expiration_trigger = None
|
2017-02-22 08:43:22 +00:00
|
|
|
|
|
|
|
def async_added_to_hass(self):
|
2017-05-02 16:18:47 +00:00
|
|
|
"""Subscribe to MQTT events.
|
2015-08-19 00:25:05 +00:00
|
|
|
|
2017-02-22 08:43:22 +00:00
|
|
|
This method must be run in the event loop and returns a coroutine.
|
|
|
|
"""
|
2016-11-17 15:34:46 +00:00
|
|
|
@callback
|
2015-08-19 00:25:05 +00:00
|
|
|
def message_received(topic, payload, qos):
|
2017-05-02 16:18:47 +00:00
|
|
|
"""Handle new MQTT messages."""
|
2017-03-23 21:55:07 +00:00
|
|
|
# auto-expire enabled?
|
|
|
|
if self._expire_after is not None and self._expire_after > 0:
|
|
|
|
# Reset old trigger
|
|
|
|
if self._expiration_trigger:
|
|
|
|
self._expiration_trigger()
|
|
|
|
self._expiration_trigger = None
|
|
|
|
|
|
|
|
# Set new trigger
|
|
|
|
expiration_at = (
|
|
|
|
dt_util.utcnow() + timedelta(seconds=self._expire_after))
|
|
|
|
|
|
|
|
self._expiration_trigger = async_track_point_in_utc_time(
|
2017-05-02 16:18:47 +00:00
|
|
|
self.hass, self.value_is_expired, expiration_at)
|
2017-03-23 21:55:07 +00:00
|
|
|
|
2017-02-22 08:43:22 +00:00
|
|
|
if self._template is not None:
|
|
|
|
payload = self._template.async_render_with_possible_json_value(
|
2016-10-13 17:39:49 +00:00
|
|
|
payload, self._state)
|
2015-12-11 05:39:01 +00:00
|
|
|
self._state = payload
|
2017-09-12 08:01:03 +00:00
|
|
|
self.async_schedule_update_ha_state()
|
2015-08-19 00:25:05 +00:00
|
|
|
|
2017-02-22 08:43:22 +00:00
|
|
|
return mqtt.async_subscribe(
|
|
|
|
self.hass, self._state_topic, message_received, self._qos)
|
2015-08-19 00:25:05 +00:00
|
|
|
|
2017-03-23 21:55:07 +00:00
|
|
|
@callback
|
|
|
|
def value_is_expired(self, *_):
|
|
|
|
"""Triggered when value is expired."""
|
|
|
|
self._expiration_trigger = None
|
|
|
|
self._state = STATE_UNKNOWN
|
2017-09-12 08:01:03 +00:00
|
|
|
self.async_schedule_update_ha_state()
|
2017-03-23 21:55:07 +00:00
|
|
|
|
2015-08-19 00:25:05 +00:00
|
|
|
@property
|
|
|
|
def should_poll(self):
|
2016-02-23 05:21:49 +00:00
|
|
|
"""No polling needed."""
|
2015-08-19 00:25:05 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
2016-03-08 15:46:34 +00:00
|
|
|
"""Return the name of the sensor."""
|
2015-08-19 00:25:05 +00:00
|
|
|
return self._name
|
|
|
|
|
|
|
|
@property
|
|
|
|
def unit_of_measurement(self):
|
2016-03-08 15:46:34 +00:00
|
|
|
"""Return the unit this state is expressed in."""
|
2015-08-19 00:25:05 +00:00
|
|
|
return self._unit_of_measurement
|
|
|
|
|
2017-03-11 18:07:52 +00:00
|
|
|
@property
|
|
|
|
def force_update(self):
|
|
|
|
"""Force update."""
|
|
|
|
return self._force_update
|
|
|
|
|
2015-08-19 00:25:05 +00:00
|
|
|
@property
|
|
|
|
def state(self):
|
2016-03-08 15:46:34 +00:00
|
|
|
"""Return the state of the entity."""
|
2015-08-20 22:05:51 +00:00
|
|
|
return self._state
|