2018-08-17 21:28:29 +02:00
|
|
|
"""Constants for the IGD component."""
|
|
|
|
import logging
|
|
|
|
|
2018-09-20 18:15:04 +02:00
|
|
|
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'
|
2019-05-08 00:52:49 +02:00
|
|
|
LOGGER = logging.getLogger(__package__)
|
2018-10-03 11:07:25 +02:00
|
|
|
SIGNAL_REMOVE_SENSOR = 'upnp_remove_sensor'
|