* Add config flow to AnthemAV integration * Add importing of existing configuration * Change setting to optional and add default value * Use entity attribute * Reduce changes by removing additional media player properties * Remove title from translation * Refactor config flow and fix PR comments * Fix a failing test because of wrong renaming * Add typing and use existing class and enum * Bump dependency to v1.3.1 * Remove unecessary async_reload_entry * Fix requirements_test_all after rebase * Add const for timeout and remove async_block in test * Reapply CodeOwner and configflow after rebase * Remove name from configflow * Fix manifest prettier failure * Simplify code and avoid catching broad exception * Removed unused strings and translations * Avoid asserting hass.data
7 lines
213 B
Python
7 lines
213 B
Python
"""Constants for the Anthem A/V Receivers integration."""
|
|
ANTHEMAV_UDATE_SIGNAL = "anthemav_update"
|
|
CONF_MODEL = "model"
|
|
DEFAULT_NAME = "Anthem AV"
|
|
DEFAULT_PORT = 14999
|
|
DOMAIN = "anthemav"
|
|
MANUFACTURER = "Anthem"
|