mirror of
https://github.com/home-assistant/core.git
synced 2025-05-29 10:17:08 +00:00

* Use CONF_MODEL in axis * Use CONF_MODEL in denonavr * Use CONF_MODEL in flux_led * Use CONF_MODEL in konnected * Use CONF_MODEL in steamist * Use CONF_MODEL in tellstick * Use CONF_MODEL in tensorflow * Use CONF_MODEL in twinkly * Use CONF_MODEL in yeelight Co-authored-by: epenet <epenet@users.noreply.github.com>
15 lines
246 B
Python
15 lines
246 B
Python
"""Constants for the Steamist integration."""
|
|
|
|
import asyncio
|
|
|
|
import aiohttp
|
|
|
|
DOMAIN = "steamist"
|
|
|
|
CONNECTION_EXCEPTIONS = (asyncio.TimeoutError, aiohttp.ClientError)
|
|
|
|
STARTUP_SCAN_TIMEOUT = 5
|
|
DISCOVER_SCAN_TIMEOUT = 10
|
|
|
|
DISCOVERY = "discovery"
|