added pre and post actions and toggle for turning off/on lights

This commit is contained in:
jeells102
2025-03-20 16:48:18 +00:00
committed by GitHub
parent ce05c4791c
commit d0e24ed8f7

View File

@ -1,6 +1,9 @@
blueprint: blueprint:
name: Parabolic Alarm Automation name: Parabolic Alarm Automation
description: Turn a light on based on a start time, whether it is a workday and whether a person is home. This is to match the sunrise and allow for a natural wake up. description:
Turn a light on based on a start time, whether it is a workday and
whether a person is home. This is to match the sunrise and allow for a natural
wake-up.
domain: automation domain: automation
input: input:
alarm_start_time: alarm_start_time:
@ -28,14 +31,21 @@ blueprint:
person_sensor: person_sensor:
name: 👤 Person Sensor name: 👤 Person Sensor
description: Select the person sensor so that the alarm will only run when you are home. description: Select the person sensor so that the alarm will only run when you are home.
default: []
selector: selector:
entity: entity:
filter: filter:
- domain: - domain:
- person - person
multiple: true multiple: true
pre_action:
name: 🎮 Pre Script Action
description: An action you want to perform before the lights turn on.
default: []
selector:
action: {}
alarm_script: alarm_script:
name: 📄 Script to trigger name: "\U0001F4C4 Script to trigger"
description: Light Alarm Script description: Light Alarm Script
selector: selector:
entity: entity:
@ -44,7 +54,7 @@ blueprint:
- script - script
multiple: false multiple: false
target_light: target_light:
name: 💡 Lights name: "\U0001F4A1 Lights"
description: The light(s) with kelvin description: The light(s) with kelvin
selector: selector:
entity: entity:
@ -53,7 +63,7 @@ blueprint:
- light - light
multiple: false multiple: false
light_timeout: light_timeout:
name: ⏱️ Timeout name: "⏱️ Timeout"
description: Light will turn off after this time on last run description: Light will turn off after this time on last run
default: 10 default: 10
selector: selector:
@ -62,6 +72,12 @@ blueprint:
max: 60.0 max: 60.0
step: 1.0 step: 1.0
mode: slider mode: slider
keep_light_on:
name: 🧐 Keep Light On
description: If enabled, the light will stay on after the alarm sequence finishes.
default: false
selector:
boolean: {}
steps_per_minute: steps_per_minute:
name: 🏃‍♂️ Steps per minute for all runs name: 🏃‍♂️ Steps per minute for all runs
description: description:
@ -80,34 +96,34 @@ blueprint:
color_temp: color_temp:
unit: kelvin unit: kelvin
default: 2500 default: 2500
name: ☀️ Starting Kelvin name: "☀️ Starting Kelvin"
target_kelvin_1: target_kelvin_1:
description: Target Kelvin value (cold) for the end of the first run description: Target Kelvin value (cold) for the end of the first run
selector: selector:
color_temp: color_temp:
unit: kelvin unit: kelvin
default: 3000 default: 3000
name: ☀️ Target Kelvin 1 name: "☀️ Target Kelvin 1"
max_brightness_1: max_brightness_1:
name: ⭐️ Maximum Brightness 1 name: "⭐️ Maximum Brightness 1"
description: Finish value for first run description: Finish value for first run
default: 10
selector: selector:
number: number:
min: 1.0 min: 1.0
max: 100.0 max: 100.0
step: 1.0 step: 1.0
mode: slider mode: slider
default: 10
alarm_length_1: alarm_length_1:
name: ⏰ Alarm Length 1 name: "⏰ Alarm Length 1"
description: This is the start to finish time for the first run description: This is the start to finish time for the first run
default: 10
selector: selector:
number: number:
min: 1.0 min: 1.0
max: 60.0 max: 60.0
step: 1.0 step: 1.0
mode: slider mode: slider
default: 10
target_kelvin_2: target_kelvin_2:
description: Target Kelvin value (cold) for second run description: Target Kelvin value (cold) for second run
selector: selector:
@ -118,23 +134,23 @@ blueprint:
max_brightness_2: max_brightness_2:
name: ⭐️ Maximum Brightness 2 name: ⭐️ Maximum Brightness 2
description: Finish value for second run description: Finish value for second run
default: 50
selector: selector:
number: number:
min: 1.0 min: 1.0
max: 100.0 max: 100.0
step: 1.0 step: 1.0
mode: slider mode: slider
default: 50
alarm_length_2: alarm_length_2:
name: ⏰ Alarm length 2 name: ⏰ Alarm length 2
description: This is the start to finish time for the second run description: This is the start to finish time for the second run
default: 10
selector: selector:
number: number:
min: 1.0 min: 1.0
max: 60.0 max: 60.0
step: 1.0 step: 1.0
mode: slider mode: slider
default: 10
target_kelvin_3: target_kelvin_3:
description: Target Kelvin value (cold) for third run description: Target Kelvin value (cold) for third run
selector: selector:
@ -145,42 +161,56 @@ blueprint:
max_brightness_3: max_brightness_3:
name: ⭐️ Maximum Brightness 3 name: ⭐️ Maximum Brightness 3
description: Finish value for third and final run description: Finish value for third and final run
default: 100
selector: selector:
number: number:
min: 1.0 min: 1.0
max: 100.0 max: 100.0
step: 1.0 step: 1.0
mode: slider mode: slider
default: 100
alarm_length_3: alarm_length_3:
name: ⏰ Alarm Length 3 name: ⏰ Alarm Length 3
description: This is the start to finish time for the third run description: This is the start to finish time for the third run
default: 5
selector: selector:
number: number:
min: 1.0 min: 1.0
max: 60.0 max: 60.0
step: 1.0 step: 1.0
mode: slider mode: slider
default: 5 post_action:
source_url: https://github.com/steku/ha_cercadian_alarm/blob/main/parabolic_alarm.yaml name: 🎮 Post Script Action
description: An action you want to run after the script has finished
default: []
selector:
action: {}
trigger: trigger:
- trigger: time - trigger: time
at: !input alarm_start_time at: !input alarm_start_time
condition: condition:
- condition: state - condition: state
entity_id: !input workday_sensor entity_id: !input workday_sensor
state: "on" state: "on"
- condition: state - condition: state
entity_id: !input person_sensor entity_id: !input person_sensor
state: "home" state: home
action: action:
- choose:
- conditions: []
sequence: !input pre_action
- action: light.turn_on - action: light.turn_on
target:
entity_id: !input target_light
data: data:
color_temp_kelvin: !input start_kelvin_temp color_temp_kelvin: !input start_kelvin_temp
brightness_pct: 1 brightness_pct: 1
entity_id: !input target_light
- delay: - delay: "00:00:05"
seconds: 5
- action: !input alarm_script - action: !input alarm_script
data: data:
target_kelvin: !input target_kelvin_1 target_kelvin: !input target_kelvin_1
@ -190,12 +220,8 @@ action:
steps_per_minute: !input steps_per_minute steps_per_minute: !input steps_per_minute
light_timeout: 0 light_timeout: 0
target_light: !input target_light target_light: !input target_light
- if:
- condition: state - service: !input alarm_script
state: "on"
entity_id: !input target_light
then:
- action: !input alarm_script
data: data:
target_kelvin: !input target_kelvin_2 target_kelvin: !input target_kelvin_2
start_kelvin: !input target_kelvin_1 start_kelvin: !input target_kelvin_1
@ -204,12 +230,8 @@ action:
steps_per_minute: !input steps_per_minute steps_per_minute: !input steps_per_minute
light_timeout: 0 light_timeout: 0
target_light: !input target_light target_light: !input target_light
- if:
- condition: state - service: !input alarm_script
state: "on"
entity_id: !input target_light
then:
- action: !input alarm_script
data: data:
target_kelvin: !input target_kelvin_3 target_kelvin: !input target_kelvin_3
start_kelvin: !input target_kelvin_2 start_kelvin: !input target_kelvin_2
@ -218,5 +240,10 @@ action:
steps_per_minute: !input steps_per_minute steps_per_minute: !input steps_per_minute
light_timeout: !input light_timeout light_timeout: !input light_timeout
target_light: !input target_light target_light: !input target_light
- choose:
- conditions: []
sequence: !input post_action
mode: parallel mode: parallel
max: 10 max: 10