diff --git a/config/automation/late_night_outside_helper.yaml b/config/automation/late_night_outside_helper.yaml index 114a24bd..7078b178 100755 --- a/config/automation/late_night_outside_helper.yaml +++ b/config/automation/late_night_outside_helper.yaml @@ -21,18 +21,21 @@ - service: scene.turn_on entity_id: scene.front_full_brightness - - service_template: >- - {% if states.group.entry_points.state == 'on' or states.group.garage_doors.state != 'closed' -%} - light.turn_on - entity_id: - - light.living_room_accents - rgb_color: [255,0,0] - {% else %} - light.turn_on - entity_id: - - light.living_room_accents - rgb_color: [255,215,0] - {% endif %} + - service: light.turn_on + entity_id: + - light.living_room_accents + data_template: + # Red if Open, Gold if Closed + rgb_color: > + {% if states.group.entry_points.state == 'on' or states.group.garage_doors.state != 'closed' -%} + - '255' + - '0' + - '0' + {% else %} + - '255' + - '215' + - '0' + {% endif %} - service_template: > {% set hour=states("sensor.time").split(':')[0] | int %} diff --git a/config/script/tweet_youtube.yaml b/config/script/tweet_youtube.yaml index 8b6da4e9..17ce0d33 100755 --- a/config/script/tweet_youtube.yaml +++ b/config/script/tweet_youtube.yaml @@ -247,8 +247,12 @@ tweet_youtube_engine_setup: ], "5TipsToLevelUp": [ "Five Home Assistant Tips with @SuburbanNerd (https://youtu.be/fRfE4hjzQMU)" + ], + "AlexaMusicCommands": [ + "All the Music Commands for Alexa! (https://youtu.be/JWnMB455NRM)" ] + } %} {{ tweets[topic]|random ~ "#youtube #throwback" }} diff --git a/config/templates/speech/youtube_picker.yaml b/config/templates/speech/youtube_picker.yaml index 06400e4d..287acf71 100755 --- a/config/templates/speech/youtube_picker.yaml +++ b/config/templates/speech/youtube_picker.yaml @@ -6,6 +6,6 @@ "S02E11", "S02E12","S02E13", "S02E14","S02E15", "S02E16","S02E17", "S02E18","S02E19", "S02E20", "S02E22", "S02E25", "S02E26", "S02E27", "S02E28", "S02E29", "S02E30", "S02E31", "S02E32", "S02E33", "S02E34", "S02E35", "S02E36", "S02E37", "S02E38", "S02E39", "S02E40","S02E41", "Bearnews1", "Bearnews2", "Bearnews3", "Bearnews4", - "S03E01", "Bearnews5", "Bearnews6", "Bearnews7", "S03E02", "S03E03", "Logger", "SolarPalmLight", "5TipsToLevelUp" + "S03E01", "Bearnews5", "Bearnews6", "Bearnews7", "S03E02", "S03E03", "Logger", "SolarPalmLight", "5TipsToLevelUp", "AlexaMusicCommands" ] %} {{ pick|random }} diff --git a/config/www/custom_ui/floorplan/images/youtube/episodes/AlexaMusicCommands.png b/config/www/custom_ui/floorplan/images/youtube/episodes/AlexaMusicCommands.png new file mode 100755 index 00000000..bcd2e2e9 Binary files /dev/null and b/config/www/custom_ui/floorplan/images/youtube/episodes/AlexaMusicCommands.png differ