Advertisement
Guest User

Untitled

a guest
Feb 26th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.72 KB | None | 0 0
  1. alias: Radio
  2. trigger:
  3.   platform: state
  4.   entity_id: input_select.radio_station
  5. action:
  6.   - service: media_player.play_media
  7.     data_template:
  8.       entity_id: >
  9.        {% if is_state('input_select.radio_station_location', 'Kitchen') %}
  10.           media_player.kitchen
  11.         {% elif is_state('input_select.radio_station_location', 'Backyard') %}
  12.           media_player.backyard
  13.         {% endif %}
  14.       media_content_id: >
  15.        {% if is_state('input_select.radio_station', 'Hot108') %}
  16.           http://jbmedia-edge1.cdnstream.com:80/hot108
  17.         {% elif is_state('input_select.radio_station', 'The Beat') %}
  18.           http://live.leanstream.co/CKBTFM-MP3
  19.         {% endif %}
  20.       media_content_type: 'audio/mp3'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement