Denon vs HEOS integrations?

What are the differences and purposes of the Denon HEOS integration vs the Denon AVR Network Receivers integration? I seem to be able to add both for the same singular piece of hardware.

Yes. They are both media player integrations for Denon products.

HEOS is Denons wireless speaker line of products. AVR is their AV Reciever lines.

Also HEOS is connecting through Denon account vs AVR being local IP. AVR product may likely be connected through HEOS but in the end both integration offer same functionality.

Just to clarify, if I have zero wireless speakers, I am not using HEOS and thus do not need that integration for anything?

Yes. Not sure if wireless speakers could use the AVR integration but HEOS definitely not need for surround receiver.

1 Like

But, using the HEOS integration can give you something extra in some cases.

The AVR integration does control the receiver, but can not see, what media is played. It only select the input, changes volume and other settings.

But, if you are playing some media, like internet radio or Spotify, the HEOS integration is able to control your playlist and show the info over the media being played.

So, yes, you donā€™t need HEOS, but using it can give more options, even when not having any wireless speakers attached. :wink:

3 Likes

This is completely accurate. Iā€™ve been dealing with this issue now. Using mini media player (GitHub - kalkih/mini-media-player: Minimalistic media card for Home Assistant Lovelace UI) the interface looks great. But I canā€™t see album information from my Denon zone entities unless I use the HEOS service. Basically, Iā€™m going to need to replicate the HEOS app in Home Assistant.

Sorry to bring back and old thread, but I just found these 2 integrations, and Iā€™m confused which one to use.

I see they have slightly different options.

The AVR one can switch source and sound mode. Also this one shows the correct on/off state, and the current source .e.g (TV audio). It can also toggle the on/off state.

The HOES one has a ā€œBrowse mediaā€ button. I donā€™t honestly get why this one has that button, but the other one doesnā€™t. Both are media players, so canā€™t I just send whatever media to them? This integration also doesnā€™t have on/off state toggling or sound mode switching. The state is also a little weird, it stays on ā€œidleā€ when I watch the TV and doesnā€™t display the correct volume (also when I watch TV).

For me it seems that the HEOS one only displays what is played with the HEOS app, not other stuff that is directly played on the AVR. Is that correct?

I will probably keep both (sinceā€¦ why not), but the AVR one looks more useful, at least for my use case, since I donā€™t plan to use HEOS much

I use both too. One to control the Ampā€™s functions, one to control the online streaming media. A power user just NEED both :wink:

Hello

I need your help because for some time I canā€™t get but Heos Link HS1 with Heos home assistant integration.

Equipment :

  • 1 x Marantz AV7704
  • 2 x Heos link HS1

During the integration I can get my Marantz but not my two heos link HS1.

I donā€™t understand because it worked before.

Thanks for your help.

Hey there, welcome to HA forums.

You may want to start your own topic to get help on this issue.

In case anyoneā€™s interested: hereā€™s my universal media player config combining Denon and HEOS in a single media player

  • has an ON/OFF button via Denon (missing from HEOS)
  • has ā€œSound Modeā€ selector via Denon (missing from HEOS)
  • volume control via Denon (more fine-granular than HEOS)
  • otherwise like HEOS (including album art etc.)

just replace media_player.denon_avr_x2700h and media_player.denon_avr_x2700h_heos with your own entities.

media_player:
  - platform: universal
    name: Denon
    unique_id: denon_universal_remote
    device_class: receiver
    children:
      - media_player.denon_avr_x2700h # Denon AVR Integration
      - media_player.denon_avr_x2700h_heos # Denon HEOS Integration
    browse_media_entity: media_player.denon_avr_x2700h_heos
    commands:
      turn_off:
        service: media_player.turn_off
        data:
          entity_id: media_player.denon_avr_x2700h
      turn_on:
        service: media_player.turn_on
        data:
          entity_id: media_player.denon_avr_x2700h
      volume_up:
        service: media_player.volume_up
        data:
          entity_id: media_player.denon_avr_x2700h
      volume_down:
        service: media_player.volume_down
        data:
          entity_id: media_player.denon_avr_x2700h
      select_sound_mode:
        service: media_player.select_sound_mode
        target:
          entity_id: media_player.denon_avr_x2700h
        data:
          sound_mode: "{{ sound_mode }}"
    attributes:
      sound_mode: media_player.denon_avr_x2700h|sound_mode
      sound_mode_raw: media_player.denon_avr_x2700h|sound_mode_raw
      sound_mode_list: media_player.denon_avr_x2700h|sound_mode_list

3 Likes