1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-29 13:13:46 +01:00
Files
core/homeassistant/components/russound_rio/const.py
2025-07-08 08:51:18 +02:00

19 lines
307 B
Python

"""Constants used for Russound RIO."""
import asyncio
from aiorussound import CommandError
DOMAIN = "russound_rio"
RUSSOUND_MEDIA_TYPE_PRESET = "preset"
SELECT_SOURCE_DELAY = 0.5
RUSSOUND_RIO_EXCEPTIONS = (
CommandError,
ConnectionRefusedError,
TimeoutError,
asyncio.CancelledError,
)