hass-core/homeassistant/components/roon/const.py
Greg Dowling 23264c8fd4
Improve roon integraton (#66000)
* Update to new library, revise discovery to work with new library, specify port to work with new library.

* Move user gui to fallback.

* Revise tests.

* Handle old config.

* Improve debugging, refresh faster on load.

* Remove duplicate.

* Bump library version.

* Fix docstring per review.

* Review suggestion

Co-authored-by: Martin Hjelmare <marhje52@gmail.com>

* Review suggestion

Co-authored-by: Martin Hjelmare <marhje52@gmail.com>

* Add check for duplicate host.

* Add error message to strings.

* Tidy.

* Review changes.

* Remove default.

Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
2022-04-18 16:27:14 +02:00

21 lines
509 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": "Roon Integration for Home Assistant",
"display_version": "1.0.0",
"publisher": "home_assistant",
"email": "home_assistant@users.noreply.github.com",
"website": "https://www.home-assistant.io/",
}