diff --git a/source/_components/heos.markdown b/source/_components/heos.markdown new file mode 100644 index 00000000000..d0fc6bfc830 --- /dev/null +++ b/source/_components/heos.markdown @@ -0,0 +1,45 @@ +--- +layout: page +title: "Denon HEOS speakers" +description: "Instructions on how to integrate Denon HEOS into Home Assistant." +date: 2019-03-06 22:00 +sidebar: true +comments: false +sharing: true +footer: true +logo: heos.png +ha_category: Media Player +ha_release: 0.92 +--- + +The Heos component integrates [HEOS](http://heosbydenon.denon.com) capable products, such as speakers, amps, and receivers (Dennon and Marantz) into Home Assistant. Features currently include: +- Each device is represented as a media player entity +- View the currently playing media +- Control play mode (play, pause, stop), volume, and mute +- Play previous and next tracks + + +## {% linkable_title Configuration %} + +To add a Denon HEOS speaker to your installation, add the following to your `configuration.yaml` file: + +```yaml +# Example configuration.yaml entry +heos: + host: IP_ADDRESS +``` + +{% configuration %} +host: + description: "Address of the device. Example: 192.168.1.32." + required: true + type: string +{% endconfiguration %} + +

+A connection to a single device enables control for all devices in the HEOS account. If you have multiple Heos devices, enter the host of one that is connected to the LAN via wire or has the strongest wireless signal. +

+ +## {% linkable_title Notes %} +- HEOS groups are not currently supported. +- Receivers with multiple zones are represented as a single media player. They can be turned on, but not off by this integration. \ No newline at end of file diff --git a/source/_components/media_player.heos.page b/source/_components/media_player.heos.page deleted file mode 100644 index 9a485f8c373..00000000000 --- a/source/_components/media_player.heos.page +++ /dev/null @@ -1,41 +0,0 @@ ---- -layout: page -title: "Denon HEOS speakers" -description: "Instructions on how to integrate Denon HEOS into Home Assistant." -date: 2019-03-06 22:00 -sidebar: true -comments: false -sharing: true -footer: true -logo: heos.png -ha_category: Media Player -ha_release: 0.91 ---- - -The `heos` platform allows you to control a [Denon HEOS Speakers](http://heosbydenon.denon.com) from Home Assistant. - -Tested devices: - -- Denon HEOS-1 - -To add a Denon HEOS speaker to your installation, add the following to your `configuration.yaml` file: - -```yaml -# Example configuration.yaml entry -media_player: - - platform: heos - name: HEOS Player - host: IP_ADDRESS -``` - -{% configuration %} -host: - description: "Address of the device. Example: 192.168.1.32." - required: true - type: string -{% endconfiguration %} - -A few notes for platform: heos - -- Does not handle multiple speakers by groups. -- Seeking is not implemented at this moment.