diff --git a/config/automation/Timed_Triggers/sunset_turn_on.yaml b/config/automation/Timed_Triggers/sunset_turn_on.yaml index 7333c986..fd1cf84c 100755 --- a/config/automation/Timed_Triggers/sunset_turn_on.yaml +++ b/config/automation/Timed_Triggers/sunset_turn_on.yaml @@ -47,13 +47,18 @@ - service: homeassistant.turn_on entity_id: - switch.front_landscaping + - light.bedroom - service: script.monthly_color_scene - service: light.turn_on entity_id: - light.outdoor_bathroom - - light.bedroom - data: - brightness: 10 + data_template: + brightness: > + {% if states.group.family.state == 'home' -%} + 10 + {% else %} + 200 + {% endif %} - wait_template: >- {{ states.group.family.state == 'home' }} - service: switch.turn_on diff --git a/config/automation/late_night_helper.yaml b/config/automation/late_night_helper.yaml index 29c7f557..ce5c5296 100755 --- a/config/automation/late_night_helper.yaml +++ b/config/automation/late_night_helper.yaml @@ -32,6 +32,11 @@ - light.M1_front_right - light.S1 - light.S4 + - service: light.turn_on + entity_id: + - light.outdoor_bathroom + data: + brightness: 10 - service: switch.turn_on entity_id: - switch.kitchen_accents diff --git a/config/configuration.yaml b/config/configuration.yaml index da4675fa..f27dd715 100755 --- a/config/configuration.yaml +++ b/config/configuration.yaml @@ -1,5 +1,5 @@ homeassistant: - name: Bear Stone Run + name: Bear Stone latitude: !secret homeassistant_latitude longitude: !secret homeassistant_longitude elevation: !secret homeassistant_elevation diff --git a/config/www/custom_ui/floorplan/images/branding/solar_readings.png b/config/www/custom_ui/floorplan/images/branding/solar_readings.png index cf80b2d1..ade54c11 100644 Binary files a/config/www/custom_ui/floorplan/images/branding/solar_readings.png and b/config/www/custom_ui/floorplan/images/branding/solar_readings.png differ