Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for Snapcast."""
2 
3 from homeassistant.const import Platform
4 
5 PLATFORMS: list[Platform] = [Platform.MEDIA_PLAYER]
6 
7 GROUP_PREFIX = "snapcast_group_"
8 GROUP_SUFFIX = "Snapcast Group"
9 CLIENT_PREFIX = "snapcast_client_"
10 CLIENT_SUFFIX = "Snapcast Client"
11 
12 SERVICE_SNAPSHOT = "snapshot"
13 SERVICE_RESTORE = "restore"
14 SERVICE_JOIN = "join"
15 SERVICE_UNJOIN = "unjoin"
16 SERVICE_SET_LATENCY = "set_latency"
17 
18 ATTR_MASTER = "master"
19 ATTR_LATENCY = "latency"
20 
21 DOMAIN = "snapcast"
22 DEFAULT_TITLE = "Snapcast"