Home-AssistantConfig/config/packages/alexa_media_player.yaml

16 lines
507 B
YAML
Raw Normal View History

2020-06-07 18:29:26 +00:00
#-------------------------------------------
# @CCOSTAN
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
# Alexa Media Sensor Support - Relies on Custom Component
#-------------------------------------------
sensor:
- platform: template
sensors:
last_alexa:
value_template: >
2024-09-18 18:05:53 +00:00
{{ states.media_player | selectattr('attributes.last_called','eq',True) | map(attribute='entity_id') | first | default('none') }}
2020-06-07 18:29:26 +00:00
#-------------------------------------------