New Features
Simple setup for entities has been added.
Example of the simplest possible configuration:
type: 'custom:plex-meets-homeassistant'
token: QWdsqEXAMPLETOKENqwerty
ip: 192.168.13.37
libraryName: Movies
entity: media_player.bedroom_tv # entity provided by cast integration
Example of the simplest possible configuration using multiple entities:
type: 'custom:plex-meets-homeassistant'
token: QWdsqEXAMPLETOKENqwerty
ip: 192.168.13.37
libraryName: Movies
entity:
- media_player.living_room_nvidia_shield # created by androidtv integration
- media_player.living_room_tv # created by cast integration
- media_player.bedroom_tv # created by cast integration
- media_player.kodi_123456qwe789rty # created by kodi integration
Card will now automatically detect entity type and use appropriate solution to play media on target entity.
Detailed configuration with defining integration for entity (cast, androidtv, kodi, plexPlayer) is still available and required in some cases. Short definition does not work for plexPlayer as that player has no entities and competely custom built.
Detailed configuration is still needed to do more advanced setup just like before.
Thank you to @rccoleman who provided a way to get entities integration and made this release possible.