Add kitchen motion automations
This commit is contained in:
parent
d4c796b35b
commit
f24a0819d1
51
automations/files/kitchen-motion.yaml
Normal file
51
automations/files/kitchen-motion.yaml
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
- id: kitchen-motion-dark
|
||||||
|
alias: '[Kitchen] Motion day dark'
|
||||||
|
mode: single
|
||||||
|
trigger:
|
||||||
|
- platform: state
|
||||||
|
entity_id: binary_sensor.kitchen_motion_sensor
|
||||||
|
from: 'off'
|
||||||
|
to: 'on'
|
||||||
|
condition:
|
||||||
|
- condition: numeric_state
|
||||||
|
entity_id: sensor.kitchen_motion_luminance
|
||||||
|
below: '50'
|
||||||
|
- condition: state
|
||||||
|
entity_id: input_select.home_mode
|
||||||
|
state: Day
|
||||||
|
action:
|
||||||
|
- service: light.turn_on
|
||||||
|
entity_id: light.kitchen_lights
|
||||||
|
data:
|
||||||
|
brightness_pct: 90
|
||||||
|
kelvin: 2000
|
||||||
|
- id: kitchen-motion-night
|
||||||
|
alias: '[Kitchen] Motion night'
|
||||||
|
mode: single
|
||||||
|
trigger:
|
||||||
|
- platform: state
|
||||||
|
entity_id: binary_sensor.kitchen_motion_sensor
|
||||||
|
from: 'off'
|
||||||
|
to: 'on'
|
||||||
|
condition:
|
||||||
|
- condition: state
|
||||||
|
entity_id: input_select.home_mode
|
||||||
|
state: Night
|
||||||
|
action:
|
||||||
|
- service: light.turn_on
|
||||||
|
entity_id: light.kitchen_lights
|
||||||
|
data:
|
||||||
|
brightness_pct: 5
|
||||||
|
kelvin: 2000
|
||||||
|
- id: kitchen-motion-off
|
||||||
|
alias: '[Kitchen] Motion Off'
|
||||||
|
mode: restart
|
||||||
|
trigger:
|
||||||
|
- platform: state
|
||||||
|
entity_id: binary_sensor.kitchen_motion_sensor
|
||||||
|
for: '0:02:00'
|
||||||
|
from: 'on'
|
||||||
|
to: 'off'
|
||||||
|
action:
|
||||||
|
- service: light.turn_off
|
||||||
|
entity_id: light.kitchen_lights
|
Loading…
Reference in New Issue
Block a user