* 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>
14 lines
246 B
Python
14 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"
|