Support MQTT Lock discovery (#13303)

This commit is contained in:
Erik Eriksson 2018-03-18 17:26:07 +01:00 committed by Paulus Schoutsen
parent 437ffc8337
commit 1cbf9792d7
2 changed files with 5 additions and 1 deletions

View file

@ -44,6 +44,9 @@ PLATFORM_SCHEMA = mqtt.MQTT_RW_PLATFORM_SCHEMA.extend({
@asyncio.coroutine
def async_setup_platform(hass, config, async_add_devices, discovery_info=None):
"""Set up the MQTT lock."""
if discovery_info is not None:
config = PLATFORM_SCHEMA(discovery_info)
value_template = config.get(CONF_VALUE_TEMPLATE)
if value_template is not None:
value_template.hass = hass