mirror of https://github.com/home-assistant/core
22 lines
488 B
Python
22 lines
488 B
Python
"""Constants for Roon Component."""
|
|
|
|
AUTHENTICATE_TIMEOUT = 5
|
|
|
|
DOMAIN = "roon"
|
|
|
|
CONF_ROON_ID = "roon_server_id"
|
|
CONF_ROON_NAME = "roon_server_name"
|
|
|
|
DATA_CONFIGS = "roon_configs"
|
|
|
|
DEFAULT_NAME = "Roon Labs Music Player"
|
|
|
|
ROON_APPINFO = {
|
|
"extension_id": "home_assistant",
|
|
"display_name": "Home Assistant",
|
|
"display_version": "1.0.1",
|
|
"publisher": "home_assistant",
|
|
"email": "home_assistant@users.noreply.github.com",
|
|
"website": "https://www.home-assistant.io/",
|
|
}
|