Add support for alarm_control_panel to MQTT Discovery. (#15689)

This commit is contained in:
Richard Orr 2018-07-28 01:16:49 +10:00 committed by Paulus Schoutsen
parent b2f4bbf93b
commit cd6544d32a
3 changed files with 28 additions and 1 deletions

View file

@ -49,6 +49,9 @@ PLATFORM_SCHEMA = mqtt.MQTT_BASE_PLATFORM_SCHEMA.extend({
@asyncio.coroutine
def async_setup_platform(hass, config, async_add_devices, discovery_info=None):
"""Set up the MQTT Alarm Control Panel platform."""
if discovery_info is not None:
config = PLATFORM_SCHEMA(discovery_info)
async_add_devices([MqttAlarm(
config.get(CONF_NAME),
config.get(CONF_STATE_TOPIC),