
* 🔥 Removes octopress.js * 🔥 Removes use of root_url var * 🔥 Removes Octopress generator reference from feed * 🔥 Removes delicious support * 🔥 Removes support for Pinboard * 🔥 Removes support for Disqus * 🔥 Removes support for Google Plus * ↩️ Migrate custom after_footer to default template * ↩️ Migrate custom footer to default template * ↩️ Migrate custom header to default template * 🔥 Removes unused template files * 🚀 Places time to read directly in post template * 🚀 Removes unneeded capture from archive_post.html template * 🔥 🚀 Removes unused, but heaving sorting call in component page * 🚀 Merged javascripts into a single file * 🔥 Removes more uses of root_url * 🚀 Removal of unneeded captures from head * 🔥 🚀 Removal of expensive liquid HTML compressor * 🔥 Removes unneeded templates * 🚀 Replaces kramdown with GitHub's CommonMark 🚀 * 💄 Adds Prism code syntax highlighting * ✨ Adds support for redirect in Netlify * ↩️ 🔥 Let Netlify handle all developer doc redirects * ✏️ Fixes typo in redirects file: Netify -> Netlify * 🔥 Removes unused .themes folder * 🔥 Removes unused aside.html template * 🔥 Removes Disqus config leftover * 🔥 Removes rouge highlighter config * 🔥 Removes Octopress 🎉 * 💄 Adjust code block font size and adds soft wraps * 💄 Adds styling for inline code blocks * 💄 Improve styling of note/warning/info boxes + div support * 🔨 Rewrites all note/warning/info boxes
2.4 KiB
title, description, logo, ha_category, ha_iot_class, ha_release, redirect_from
title | description | logo | ha_category | ha_iot_class | ha_release | redirect_from | ||
---|---|---|---|---|---|---|---|---|
Anthem A/V Receivers | Instructions on how to integrate Anthem A/V Receivers into Home Assistant. | anthemav.png |
|
Local Push | 0.37 |
|
Both Anthem's current and last generation of A/V Receivers and Processors support IP-based, network control. This Home Assistant platform adds proper "local push" support for any of these receivers on your network.
Supported Models
- MRX 520, MRX 720, MRX 1120, and AVM 60
- MRX 310, MRX 510, MRX 710
Support is provided through the Python anthemav module. Older, RS-232 serial-based units like the D2v use a different protocol entirely and are not currently supported.
To use your Anthem A/V Receiver in your installation, add the following to your configuration.yaml
file:
# Example configuration.yaml entry
media_player:
- platform: anthemav
host: IP_ADDRESS
{% configuration %} host: description: The host name or the IP address of the device. required: true type: string port: description: The port number of the device. required: false default: 14999 type: integer name: description: The name of the device used in the frontend. required: false type: string {% endconfiguration %}
Notes and Limitations
- The tuner is currently unsupported as are the
media_player
play, pause, prev, and next controls. - Enabling this platform will set and enforce "Standby IP Control On" in your Anthem device. You almost certainly want this. If you disable it on the device, it will just get re-enabled by Home Assistant.
- Only Zone 1 is currently supported.
This platform will maintain a persistent connection to the network control port which will prevent any other application from communicating with the receiver. This includes the Anthem iOS and Android remote control apps as well as the ARC-2 Anthem Room Calibration software. You will need to disable this platform and restart Home Assistant if you want to use another
application that makes use of the network control port.
The underlying Python module has hooks for halting and resuming the network connection but those functions are currently unsupported by the Home Assistant platform.