2018-08-17 19:28:29 +00:00
|
|
|
"""Constants for the IGD component."""
|
|
|
|
import logging
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
CONF_ENABLE_PORT_MAPPING = "port_mapping"
|
|
|
|
CONF_ENABLE_SENSORS = "sensors"
|
|
|
|
CONF_HASS = "hass"
|
|
|
|
CONF_LOCAL_IP = "local_ip"
|
|
|
|
CONF_PORTS = "ports"
|
|
|
|
DOMAIN = "upnp"
|
2019-05-07 22:52:49 +00:00
|
|
|
LOGGER = logging.getLogger(__package__)
|
2019-07-31 19:25:30 +00:00
|
|
|
SIGNAL_REMOVE_SENSOR = "upnp_remove_sensor"
|