core/homeassistant/components/wiz/const.py

19 lines
406 B
Python
Raw Normal View History

"""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,
)