hass-core/homeassistant/components/wiz/const.py
2022-02-07 17:44:52 +01:00

18 lines
406 B
Python

"""Constants for the WiZ Platform integration."""
from datetime import timedelta
from pywizlight.exceptions import WizLightConnectionError, WizLightTimeOutError
DOMAIN = "wiz"
DEFAULT_NAME = "WiZ"
DISCOVER_SCAN_TIMEOUT = 10
DISCOVERY_INTERVAL = timedelta(minutes=15)
WIZ_EXCEPTIONS = (
OSError,
WizLightTimeOutError,
TimeoutError,
WizLightConnectionError,
ConnectionRefusedError,
)