2015-08-19 00:25:05 +00:00
|
|
|
"""
|
|
|
|
homeassistant.components.sensor.mqtt
|
2015-10-21 17:36:52 +00:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2015-08-19 00:25:05 +00:00
|
|
|
Allows to configure a MQTT sensor.
|
|
|
|
|
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
|
|
|
"""
|
|
|
|
import logging
|
2016-02-03 23:54:01 +00:00
|
|
|
from homeassistant.const import CONF_VALUE_TEMPLATE, STATE_UNKNOWN
|
2015-08-19 00:25:05 +00:00
|
|
|
from homeassistant.helpers.entity import Entity
|
2015-12-11 05:39:01 +00:00
|
|
|
from homeassistant.util import template
|
2015-08-19 00:25:05 +00:00
|
|
|
import homeassistant.components.mqtt as mqtt
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
DEFAULT_NAME = "MQTT Sensor"
|
2015-09-07 00:16:31 +00:00
|
|
|
DEFAULT_QOS = 0
|
2015-08-19 00:25:05 +00:00
|
|
|
|
|
|
|
DEPENDENCIES = ['mqtt']
|
|
|
|
|
2015-08-20 22:05:51 +00:00
|
|
|
|
2015-08-19 00:25:05 +00:00
|
|
|
# pylint: disable=unused-argument
|
|
|
|
def setup_platform(hass, config, add_devices_callback, discovery_info=None):
|
2015-10-21 17:36:52 +00:00
|
|
|
""" Add MQTT Sensor. """
|
2015-08-20 22:05:51 +00:00
|
|
|
|
2015-08-19 00:25:05 +00:00
|
|
|
if config.get('state_topic') is None:
|
|
|
|
_LOGGER.error("Missing required variable: state_topic")
|
|
|
|
return False
|
2015-08-20 22:05:51 +00:00
|
|
|
|
2015-08-19 00:25:05 +00:00
|
|
|
add_devices_callback([MqttSensor(
|
|
|
|
hass,
|
2015-08-20 22:05:51 +00:00
|
|
|
config.get('name', DEFAULT_NAME),
|
2015-08-19 00:25:05 +00:00
|
|
|
config.get('state_topic'),
|
2015-09-07 00:16:31 +00:00
|
|
|
config.get('qos', DEFAULT_QOS),
|
2015-11-20 21:03:17 +00:00
|
|
|
config.get('unit_of_measurement'),
|
2015-12-11 05:39:01 +00:00
|
|
|
config.get(CONF_VALUE_TEMPLATE))])
|
2015-08-19 00:25:05 +00:00
|
|
|
|
|
|
|
|
2015-09-07 00:28:45 +00:00
|
|
|
# pylint: disable=too-many-arguments, too-many-instance-attributes
|
2015-08-19 00:25:05 +00:00
|
|
|
class MqttSensor(Entity):
|
2015-10-21 17:36:52 +00:00
|
|
|
""" Represents a sensor that can be updated using MQTT. """
|
2015-11-20 21:55:52 +00:00
|
|
|
def __init__(self, hass, name, state_topic, qos, unit_of_measurement,
|
2015-12-11 05:39:01 +00:00
|
|
|
value_template):
|
2016-02-03 23:54:01 +00:00
|
|
|
self._state = STATE_UNKNOWN
|
2015-08-19 00:25:05 +00:00
|
|
|
self._hass = hass
|
|
|
|
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
|
|
|
|
|
|
|
|
def message_received(topic, payload, qos):
|
2015-08-22 13:57:57 +00:00
|
|
|
""" A new MQTT message has been received. """
|
2015-12-11 05:39:01 +00:00
|
|
|
if value_template is not None:
|
|
|
|
payload = template.render_with_possible_json_value(
|
|
|
|
hass, value_template, payload)
|
|
|
|
self._state = payload
|
2015-08-19 00:25:05 +00:00
|
|
|
self.update_ha_state()
|
|
|
|
|
2015-09-07 00:16:31 +00:00
|
|
|
mqtt.subscribe(hass, self._state_topic, message_received, self._qos)
|
2015-08-19 00:25:05 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def should_poll(self):
|
|
|
|
""" No polling needed """
|
|
|
|
return False
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
""" The name of the sensor """
|
|
|
|
return self._name
|
|
|
|
|
|
|
|
@property
|
|
|
|
def unit_of_measurement(self):
|
|
|
|
""" Unit this state is expressed in. """
|
|
|
|
return self._unit_of_measurement
|
|
|
|
|
|
|
|
@property
|
|
|
|
def state(self):
|
|
|
|
""" Returns the state of the entity. """
|
2015-08-20 22:05:51 +00:00
|
|
|
return self._state
|