* Add multi-zone support to Anthem AV receiver and distribution amplifier * Fix typo in comment * Convert properties to attribute and add test * Migrate entity name * Fix after rebase add strict typing and bump version * fix typing * Simplify test * Small improvement * remove dispatcher send and use callback
8 lines
242 B
Python
8 lines
242 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"
|
|
DEVICE_TIMEOUT_SECONDS = 4.0
|