hass-core/homeassistant/components/upnp/const.py

12 lines
296 B
Python
Raw Normal View History

2018-08-17 21:28:29 +02:00
"""Constants for the IGD component."""
import logging
CONF_ENABLE_PORT_MAPPING = 'port_mapping'
2018-08-30 16:38:43 +02:00
CONF_ENABLE_SENSORS = 'sensors'
2018-09-08 00:11:23 +02:00
CONF_HASS = 'hass'
CONF_LOCAL_IP = 'local_ip'
CONF_PORTS = 'ports'
2018-09-17 22:08:09 +02:00
DOMAIN = 'upnp'
LOGGER = logging.getLogger(__package__)
SIGNAL_REMOVE_SENSOR = 'upnp_remove_sensor'