Support for Denon Home devices

Denon have a range of wireless speakers called Denon Home. They are actually found by the Denon AVR integration, but I can’t configure them. Support for these speakers would be excellent as I could then send sound to them.

Have you clicked the configure button?

Yes. of course. That’s why I said “I can’t configure them”.

Not much of an error report. Logs? What does it actually say?

Well I was asking for a feature request, not reporting a bug, but I can do that.

Aren’t these devices running Denon HEOS? I don’t have 1 of those myself, but I do have some Denon HEOS Amp devices and an AVR, which all work using the HEOS integration

The AVR’s work just fine. It’s the HEOS Home which doesn’t seem to connect

Does it also not work with the HEOS integration? (Denon HEOS - Home Assistant)

For me, the AVR is integration with the Denon AVR integration, which works fine for most things, but when I want to play anything from HEOS, I need to go through the HEOS integration (Same as the HEOS amp devices)

OK, thanks, that was the answer. The Denon integration picks it up, which is why I was asking.

So, now I have the AVR twice.

So, maybe the ask is to merge the two integrations :slight_smile:

Those Denon home speakers have:

  • Quick Start Mode (20 minutes of no operation)
  • Deep Standby (60 minutes of no operation)

Can owners confirm that

  1. you can’t disable standby mode and
  2. you have to press some button on the speaker to exit standby mode after 60 minutes of no operation

Also what options available in Denon integration? Do you have to install HEOS app? Are you forced to create HEOS account?

Hello everyone,

I wanted to buy a speaker like this to be able to play sounds or music via Home Assistant.
However, the whole thing is of no use to me if I have to wake the speakers from standby or press a button.
Don’t the speakers wake up by themselves when you want to stream to them?
Is it even possible to stream music locally with Home Assistant WITHOUT spotify etc.?

Thank you all

1 Like

yea, that’s the most important question to me. Many wireless speakers have standby mode without option to disable it. And you can’t use it for real-time HA notifications or Text-to-speech in Voice Assistant.

I would never buy such speakers.

@dumbdevice

I have a Denon Home 250.

You can disable standby mode in the Heos app.

I have done some testing.
I have buttons in my kitchen (I built a box with 18 button and a ESP32 for this purpose) to control this speaker.
I can check this again but at least for enabled standby, I had to send a media_player command twice for the music to start.
I made a script that sends an url to play and after 5 seconds it checks if {{ states('media_player.denon') != 'playing' }} is true and if is it sends the same play command once more.
So you don’t have to actually click the buttons on the speaker to wake it up, you need to send the command twice.
But I have since that disabled the standby.
Now the music starts right away after the first click/command.

The modes I can choose from in the Heos app on my Android phone are:

  • Automatic standby (standard)
  • Quick start

@siobhan You can’t configure the speaker, HA treats it as a media_player. So you send commands to it like any other media player connected to HA.
What I do is send commands like:

# Play radio
- action: media_player.play_media
  metadata: {}
  data:
    media_content_type: url
    media_content_id: |-
        'https://live1.sr.se/p1-aac-320'
  target:
    entity_id: media_player.denon

# Lower the volume
- action: media_player.volume_set
  metadata: {}
  data_template:
    volume_level: "{{ states.media_player.denon.attributes.volume_level - 0.025 }}"
  target:
    entity_id: media_player.denon

# Stop
- action: media_player.media_stop
  metadata: {}
  data: {}
  target:
    entity_id: media_player.denon

I don’t play local music with it and if I want to play anything but genre specific radio stations I pick up my phone and “cast” it.

1 Like

This is good news, thanks for confirmation!
I might consider Denon Home 150 NV new version (without microphones and voice assistant) for local music playback and Piper TTS

I personally would like to avoid such workarounds with the speaker.

Waking up is only needed if standby mode is enabled.

Since disabling it I only send the commands once.

1 Like

For several days now, I’ve been struggling with the Denon Nv 150 connected via Wi-Fi. It’s a simple matter: when there’s movement in the kitchen detected by the motion sensor, turn on the radio on the speaker. I don’t know, maybe I’m just stupid and can’t figure it out. The best part is that it worked for a few hours and then it stopped and now it’s not working.

alias: "Kuchnia: Radio Obecność"
description: Radio Denon Home
triggers:
  - trigger: state
    entity_id: binary_sensor.0xe406bffffee66e93_occupancy
    from: "off"
    to: "on"
    id: wejscie
  - trigger: state
    entity_id: binary_sensor.0xe406bffffee66e93_occupancy
    from: "on"
    to: "off"
    for:
      minutes: 5
    id: brak_ruchu
actions:
  - choose:
      - conditions:
          - condition: trigger
            id: wejscie
          - condition: time
            after: "05:30:00"
            before: "23:59:00"
        sequence:
          - action: media_player.volume_set
            target:
              entity_id: media_player.denon_kuchnia
            data:
              volume_level: |
                {{ 0.15 if now().hour >= 19 or now().hour < 7 else 0.3 }}
          - delay: "00:00:01"
          - action: media_player.play_media
            target:
              entity_id: media_player.denon_kuchnia
            data:
              media:
                media_content_id: http://stream.radioszczecin.pl:8000/rs
                media_content_type: audio/mpeg
                metadata: {}
          - delay: "00:00:02"
          - if:
              - condition: template
                value_template: "{{ states('media_player.denon_kuchnia') != 'playing' }}"
            then:
              - action: media_player.play_media
                target:
                  entity_id: media_player.denon_kuchnia
                data:
                  media:
                    media_content_id: http://stream.radioszczecin.pl:8000/rs
                    media_content_type: audio/mpeg
                    metadata: {}
      - conditions:
          - condition: trigger
            id: brak_ruchu
        sequence:
          - action: media_player.media_stop
            target:
              entity_id: media_player.denon_kuchnia
mode: restart

No idea, I still don’t have any Denon speakers. Maybe try to connect it wired?