mirror of https://github.com/home-assistant/core
23 lines
500 B
Python
23 lines
500 B
Python
"""Constants for Snapcast."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
PLATFORMS: list[Platform] = [Platform.MEDIA_PLAYER]
|
|
|
|
GROUP_PREFIX = "snapcast_group_"
|
|
GROUP_SUFFIX = "Snapcast Group"
|
|
CLIENT_PREFIX = "snapcast_client_"
|
|
CLIENT_SUFFIX = "Snapcast Client"
|
|
|
|
SERVICE_SNAPSHOT = "snapshot"
|
|
SERVICE_RESTORE = "restore"
|
|
SERVICE_JOIN = "join"
|
|
SERVICE_UNJOIN = "unjoin"
|
|
SERVICE_SET_LATENCY = "set_latency"
|
|
|
|
ATTR_MASTER = "master"
|
|
ATTR_LATENCY = "latency"
|
|
|
|
DOMAIN = "snapcast"
|
|
DEFAULT_TITLE = "Snapcast"
|