2015-08-19 00:24:40 +00:00
|
|
|
"""
|
|
|
|
homeassistant.components.switch.mqtt
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Allows to configure a MQTT switch.
|
|
|
|
|
2015-10-21 17:43:24 +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/switch.mqtt/
|
2015-08-19 00:24:40 +00:00
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
import homeassistant.components.mqtt as mqtt
|
|
|
|
from homeassistant.components.switch import SwitchDevice
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
DEFAULT_NAME = "MQTT Switch"
|
2015-09-07 00:16:31 +00:00
|
|
|
DEFAULT_QOS = 0
|
2015-08-19 00:24:40 +00:00
|
|
|
DEFAULT_PAYLOAD_ON = "ON"
|
|
|
|
DEFAULT_PAYLOAD_OFF = "OFF"
|
|
|
|
DEFAULT_OPTIMISTIC = False
|
|
|
|
|
|
|
|
DEPENDENCIES = ['mqtt']
|
|
|
|
|
2015-08-22 14:10:49 +00:00
|
|
|
|
2015-08-19 00:24:40 +00:00
|
|
|
# pylint: disable=unused-argument
|
|
|
|
def setup_platform(hass, config, add_devices_callback, discovery_info=None):
|
2015-10-21 17:43:24 +00:00
|
|
|
""" Add MQTT Switch. """
|
2015-08-19 00:24:40 +00:00
|
|
|
|
|
|
|
if config.get('command_topic') is None:
|
|
|
|
_LOGGER.error("Missing required variable: command_topic")
|
|
|
|
return False
|
2015-08-22 14:10:49 +00:00
|
|
|
|
2015-08-19 00:24:40 +00:00
|
|
|
add_devices_callback([MqttSwitch(
|
|
|
|
hass,
|
|
|
|
config.get('name', DEFAULT_NAME),
|
|
|
|
config.get('state_topic'),
|
|
|
|
config.get('command_topic'),
|
2015-09-07 00:16:31 +00:00
|
|
|
config.get('qos', DEFAULT_QOS),
|
2015-08-19 00:24:40 +00:00
|
|
|
config.get('payload_on', DEFAULT_PAYLOAD_ON),
|
|
|
|
config.get('payload_off', DEFAULT_PAYLOAD_OFF),
|
2015-11-20 21:03:17 +00:00
|
|
|
config.get('optimistic', DEFAULT_OPTIMISTIC),
|
|
|
|
config.get('state_format'))])
|
2015-08-19 00:24:40 +00:00
|
|
|
|
2015-08-22 14:10:49 +00:00
|
|
|
|
2015-08-22 15:10:29 +00:00
|
|
|
# pylint: disable=too-many-arguments, too-many-instance-attributes
|
2015-08-19 00:24:40 +00:00
|
|
|
class MqttSwitch(SwitchDevice):
|
2015-10-21 17:43:24 +00:00
|
|
|
""" Represents a switch that can be togggled using MQTT. """
|
2015-09-07 00:16:31 +00:00
|
|
|
def __init__(self, hass, name, state_topic, command_topic, qos,
|
2015-11-20 21:03:17 +00:00
|
|
|
payload_on, payload_off, optimistic, state_format):
|
2015-08-22 14:10:49 +00:00
|
|
|
self._state = False
|
2015-08-19 00:24:40 +00:00
|
|
|
self._hass = hass
|
|
|
|
self._name = name
|
|
|
|
self._state_topic = state_topic
|
|
|
|
self._command_topic = command_topic
|
2015-09-07 00:16:31 +00:00
|
|
|
self._qos = qos
|
2015-08-19 00:24:40 +00:00
|
|
|
self._payload_on = payload_on
|
|
|
|
self._payload_off = payload_off
|
|
|
|
self._optimistic = optimistic
|
2015-11-21 16:57:15 +00:00
|
|
|
self._parse = mqtt.FmtParser(state_format)
|
2015-08-22 14:10:49 +00:00
|
|
|
|
2015-08-19 00:24:40 +00:00
|
|
|
def message_received(topic, payload, qos):
|
2015-08-22 14:10:49 +00:00
|
|
|
""" A new MQTT message has been received. """
|
2015-11-21 16:57:15 +00:00
|
|
|
payload = self._parse(payload)
|
2015-08-22 14:10:49 +00:00
|
|
|
if payload == self._payload_on:
|
2015-08-19 00:24:40 +00:00
|
|
|
self._state = True
|
|
|
|
self.update_ha_state()
|
2015-08-22 14:10:49 +00:00
|
|
|
elif payload == self._payload_off:
|
2015-08-19 00:24:40 +00:00
|
|
|
self._state = False
|
|
|
|
self.update_ha_state()
|
|
|
|
|
|
|
|
if self._state_topic is None:
|
2015-08-22 14:10:49 +00:00
|
|
|
# force optimistic mode
|
2015-08-19 00:24:40 +00:00
|
|
|
self._optimistic = True
|
|
|
|
else:
|
2015-08-22 14:10:49 +00:00
|
|
|
# subscribe the state_topic
|
2015-09-07 00:28:45 +00:00
|
|
|
mqtt.subscribe(hass, self._state_topic, message_received,
|
2015-09-07 00:16:31 +00:00
|
|
|
self._qos)
|
2015-08-19 00:24:40 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def should_poll(self):
|
2015-10-21 17:43:24 +00:00
|
|
|
""" No polling needed. """
|
2015-08-19 00:24:40 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
2015-10-21 17:43:24 +00:00
|
|
|
""" The name of the switch. """
|
2015-08-19 00:24:40 +00:00
|
|
|
return self._name
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_on(self):
|
|
|
|
""" True if device is on. """
|
|
|
|
return self._state
|
|
|
|
|
|
|
|
def turn_on(self, **kwargs):
|
|
|
|
""" Turn the device on. """
|
2015-09-07 00:28:45 +00:00
|
|
|
mqtt.publish(self.hass, self._command_topic, self._payload_on,
|
2015-09-07 00:16:31 +00:00
|
|
|
self._qos)
|
2015-08-19 00:24:40 +00:00
|
|
|
if self._optimistic:
|
2015-08-22 14:10:49 +00:00
|
|
|
# optimistically assume that switch has changed state
|
2015-08-19 00:24:40 +00:00
|
|
|
self._state = True
|
|
|
|
self.update_ha_state()
|
|
|
|
|
|
|
|
def turn_off(self, **kwargs):
|
|
|
|
""" Turn the device off. """
|
2015-09-07 00:28:45 +00:00
|
|
|
mqtt.publish(self.hass, self._command_topic, self._payload_off,
|
2015-09-07 00:16:31 +00:00
|
|
|
self._qos)
|
2015-08-19 00:24:40 +00:00
|
|
|
if self._optimistic:
|
2015-08-22 14:10:49 +00:00
|
|
|
# optimistically assume that switch has changed state
|
2015-08-19 00:24:40 +00:00
|
|
|
self._state = False
|
|
|
|
self.update_ha_state()
|