Understood but manually updating it will then throw a red âupdate availableâ in the custom card updater⊠I assume at some point youâll update the version to this card.
Thanks for the awesome custom card @kalkih. I have it in my to-do list to make a video guide on different custom cards for Lovelace. Will definitely be covering your custom cards.
Great card, use this with my Amazon Echos.
When playing specific artists it pulls down the cover artwork as expected, however I also use the Echo to play radio stations quite a bit.
It would be great to pick up the radio station and use a cover graphic for the radio station in question rather than staying blank as it does currently.
I know my Denon AVR show artwork from internet radio stations.
The artwork is grabbed from whatâs reported by the players backend component. Sounds like either the echo or the echo component isnât supporting artwork for radio stations.
If thatâs the case I canât really do anything about it.
I have a small problem though. This card uses âtoggleâ on a power button press. The default âtoggleâ behavior for a media player is like this:
if self.state in [STATE_OFF, STATE_IDLE]:
return self.async_turn_on()
return self.async_turn_off()
I have a KODI player and it is often idle. You card shows a golden power button - and that is correct since it is really powered. When I press the button I expect the power to be turned off, but an attempt is made to turn it on again.
I do not know what is the best way to modify it and which component is responsible, probably the default media player behavior is wrong.
But could it be possible to modify your card as to use explicitly âturn_onâ and âturn_offâ services as a special option?