I think I posed this question originally to the wrong place, so I’ll try again.
I have a combination of Sonos and Apple Homepod Minis around the house. The Mini-player works great with all the Sonos speakers. Basically, I have Sonos in most rooms and pretty much use the grouping to play music and alert messages to the whole house. However, some rooms, like the garages and bathrooms, only have (cheaper) HomePod Minis, and I’d like to be able to send the music and alerts to those as well. However, if I add in a Homepod to my Mini-Player configuration file, it doesn’t seem to recognize it - or at least nothing comes out of the device. Perhaps I’m doing something really silly.
The YAML configuration code snippet below shows an example of how one of the the Sonos is configured, which works great; the second bit shows how the HomePod is configured, which does not work at all. Both entities show up as media players, so I’m at odds to understand why the HomePods are silent.
#Sonos speaker configuration, which works great
- type: custom:mini-media-player
entity: media_player.darrells_office_sonos
name: Darrell's Office SONOS
icon: phu:sonos-one
artwork: none
hide:
power: true
progress: true
controls: true
speaker_group:
show_group_count: false
group: false
#HomePod configuration which doesn't work at all
- type: custom:mini-media-player
entity: media_player.darrells_homepod
name: Darrell's Office HomePod
artwork: none
hide:
power: true
progress: true
controls: true
speaker_group:
show_group_count: false
group: false
Later in the configuration file, where the entities are ‘grouped’, I have:
speaker_group:
platform: SONOS
show_group_count: false
supports_master: false
entities:
- entity_id: media_player.darrells_office_sonos
- entity_id: media_player.darrells_homepod
Any thoughts?