Interesting idea, would be practical.
The conditional card does only support conditions based on states unfortunately.
I don’t own any Sonos myself so I’ve not been able test if the code below actually works but I think it should. In the example we got two sonos speakers with entity ids media_player.sonos_1 & media_player.sonos_2.
First we need to set up a binary sensor for each sonos speaker which we’ll later use in our conditional cards. The binary sensor should flip to on if our condition is fulfilled, the condition being:
The entity isn’t the master speaker (the master is the first entry in the sonos_group attribute)
and
The entity is in a group (sonos_group includes more than 1 entity)
Hmm…okay.
I see there’s an option where you can specify entity id´s which the sensor should react to, if automatic updates doesn’t work.
See entity_id, but I’m not sure if it reacts to attribute changes, but might be worth a try!
Oh sorry, yes that’s probably it then haha, I took for granted you were using Sonos so the attributes and the way they function are probably different for you with HEOS.
Glad you got it working!
So HEOS exposes an attribute called groupName? Is that the only group rrelated attribute exposed?
I guess @Cadish is still running the custom_component for HEOS with grouping, am I right? That may be why something is different?? To my knowledge there is no official support for grouping in the HEOS integration, but it seems to be working quite well with the custom integration here
I’m going to try the same as Cadish did for hiding grouped ones, think it sounds like a nice idea!
Is the Sonos doing it differently? Should it be inside [] as an array or something to working similarly as the Sonos? Or could it be a space missing after the comma? Guess it would be wise for the HEOS-integration to do it similar to Sonos since it seems to be more commonly integrated with other stuff.
Nice, it’s possible that it’s an array, just displayed as a comma separated in the dev-state view if it’s there you’re looking.
If it’s in fact an array, then that’s how the Sonos component does it, additionally Sonos has the master speaker listed as the first entry in that list. Idk if HEOS works the same where you have a master/slaves.
Is there support for group management service calls in that custom component as well?
Yes, you’re right. It is an array already, I was fooled by the presentation in the dev-state view. Heos also has a master, and it is also listed as the first one in the array. So it should be the same then. Service calls are also implemented. I’ll test a bit with the suggestions above, then let’s see
Neat!
Would you mind testing this cards built-in group management if you haven’t already. If the implementation is the same as Sonos it should work, make sure to specify the platform as heos.
It’s working perfectly, or rather the other way around, it was designed to work with the card Although I think I just found some kind of bug in my code this evening with the “leave” button, but it’s not a big thing. Will look into it tho…
Yeah, well, I did the grouping thing, but it’s all thanks to @andrewsayre’s great work on both Pyheos as well as the home assistant integration of HEOS. Without the working features of the Pyheos, I would be completely lost, but I managed to hack together something that seems to be working well. Hopefully, someone with better skills than me will be able to implement the group support to the official integration.
Could someone kindly point this humble noob in the right direction?
So I got my '‘custom:mini-media-player’ to work. umm, after fumbling around with it for 4 hours. Mostly my issue was I feel that I could have shortened the code but EVERY rendition I tried would not work. So I gave up on my dreams making the code shorter. Anyways…
My actual question if possible could someone please show me a way to HIDE a ‘media-player’ device if it is not currently playing/powered on??
Can someone explain me how icon_state is supposed to work ?
I added it to my config, but the result is the same as if it wasn’t present: the media player icon is changing to white when it’s playing, while an active icon is supposed to be blue based on my theme.
Is there any modification to bring to the theme so that it works ?
Hello,
Yes as suggested, check out the conditional-card.
Some of your configs have invalid options or options specified in the wrong place of the config.
- type: 'custom:mini-media-player'
name: Whole House Audio Group
icon: null # you don't need to set this if you don't want to override the default icon.
entity: media_player.group_whole_house_audio
group: true
controls: play_pause # this is not a valid option
hide: null # same here, you don't need to set this if you don't want to override the default.
artwork: cover
tts:
platform: google_translate
info: scroll
source: icon
- type: 'custom:mini-media-player'
entity: media_player.kitchen_display
name: null # same as before
icon: 'mdi:monitor-speaker'
artwork: none
group: true
show_group_count: false # not a valid option here
hide:
controls: true
power: true
info: true
progress: true
Hello,
This isn’t available in a release yet, I must have pushed it to the master branch by mistake which is why you see it in the documentation.
It should work as you described in the next release, sorry for the confusion!