Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for Roon Component."""
2 
3 AUTHENTICATE_TIMEOUT = 5
4 
5 DOMAIN = "roon"
6 
7 CONF_ROON_ID = "roon_server_id"
8 CONF_ROON_NAME = "roon_server_name"
9 
10 DATA_CONFIGS = "roon_configs"
11 
12 DEFAULT_NAME = "Roon Labs Music Player"
13 
14 ROON_APPINFO = {
15  "extension_id": "home_assistant",
16  "display_name": "Home Assistant",
17  "display_version": "1.0.1",
18  "publisher": "home_assistant",
19  "email": "home_assistant@users.noreply.github.com",
20  "website": "https://www.home-assistant.io/",
21 }