This commit is contained in:
2026-03-15 15:33:58 +01:00
parent d5c2a9cabb
commit 3d589ba739
+56 -83
View File
@@ -1,94 +1,67 @@
# - alias: 'Lys Andreas dag - arbejdsdag - sunrise' - alias: Andreas lys motion
# trigger: mode: restart
# platform: time
# at: '06:00:00'
# condition:
# - condition: state
# entity_id: binary_sensor.arbejdsdag
# state: 'on'
# action:
# - service: script.sunrise
- alias: 'Lys Andreas dag - arbejdsdag'
trigger: trigger:
platform: state - platform: state
entity_id: binary_sensor.hue_motion_sensor_2_motion_2 entity_id: binary_sensor.hue_motion_sensor_2_motion_2
to: 'on' to: "on"
condition: id: motion_on
- condition: numeric_state
entity_id: sensor.hue_motion_sensor_2_illuminance_2 - platform: state
below: 90 entity_id: binary_sensor.hue_motion_sensor_2_motion_2
- condition: state to: "off"
entity_id: binary_sensor.arbejdsdag id: motion_off
state: 'on'
- condition: time variables:
after: '06:30:00' lux_limit: "{{ states('input_number.andreas_lux_threshold') | int }}"
before: '19:45:00' brightness: "{{ states('input_number.andreas_brightness') | int }}"
timeout: "{{ states('input_number.andreas_timeout') | int }}"
action: action:
- service: homeassistant.turn_on
- choose:
# Motion detected
- conditions:
- condition: trigger
id: motion_on
# ⚠️ Skift numeric_state til template condition
- condition: template
value_template: >
{{ states('sensor.hue_motion_sensor_2_illuminance_2') | int < lux_limit }}
- condition: template
value_template: >
{% set t = now().strftime('%H%M') | int %}
{% if is_state('binary_sensor.arbejdsdag','on') %}
{{ 630 <= t <= 1945 }}
{% else %}
{{ 1000 <= t <= 2030 }}
{% endif %}
sequence:
- service: light.turn_on
target: target:
entity_id: light.andreas_vaerelse entity_id: light.andreas_vaerelse
data: data:
brightness_pct: 100 brightness_pct: "{{ brightness }}"
# Motion stopped
- conditions:
- condition: trigger
id: motion_off
sequence:
- delay:
minutes: "{{ timeout }}"
- alias: 'Lys Andreas dag - ikke arbejdsdag'
trigger:
platform: state
entity_id: binary_sensor.hue_motion_sensor_2_motion_2
to: 'on'
condition:
- condition: numeric_state
entity_id: sensor.hue_motion_sensor_2_illuminance_2
below: 90
- condition: state - condition: state
entity_id: binary_sensor.arbejdsdag entity_id: binary_sensor.hue_motion_sensor_2_motion_2
state: 'off' state: "off"
- condition: time
after: '10:00:00' - service: light.turn_off
before: '20:30:00'
action:
- service: homeassistant.turn_on
target: target:
entity_id: light.andreas_vaerelse entity_id: light.andreas_vaerelse
data:
brightness_pct: 100
# - alias: 'Lys Andreas aften'
# trigger:
# platform: state
# entity_id: binary_sensor.hue_motion_sensor_2_motion_2
# to: 'on'
# condition:
# - condition: numeric_state
# entity_id: sensor.hue_motion_sensor_2_illuminance_2
# below: 90
# - condition: time
# after: '20:00:01'
# before: '21:00:00'
# action:
# - service: homeassistant.turn_on
# target:
# entity_id: light.andreas_vaerelse
# data:
# brightness_pct: 50
- alias: 'Sluk lys i Andreas'
trigger:
platform: state
entity_id: binary_sensor.hue_motion_sensor_2_motion_2
to: 'off'
for:
minutes: 10
condition:
- condition: time
after: '05:00:00'
before: '20:00:00'
action:
- service: homeassistant.turn_off
data:
entity_id:
- light.andreas_vaerelse