Advertisement
Guest User

Untitled

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