26 lines
625 B
YAML
26 lines
625 B
YAML
|
- id: table-lights-on
|
||
|
alias: '[Table] Lights On'
|
||
|
mode: single
|
||
|
trigger:
|
||
|
- platform: state
|
||
|
entity_id: binary_sensor.presence_sensor_fp2_table
|
||
|
to: 'on'
|
||
|
action:
|
||
|
- choose:
|
||
|
- conditions:
|
||
|
- condition: numeric_state
|
||
|
entity_id: sensor.office_illuminance
|
||
|
below: '200'
|
||
|
sequence:
|
||
|
- service: script.table_lights_on
|
||
|
|
||
|
- id: table-lights-off
|
||
|
alias: '[Table] Lights Off'
|
||
|
mode: restart
|
||
|
trigger:
|
||
|
- platform: state
|
||
|
entity_id: binary_sensor.presence_sensor_fp2_table
|
||
|
to: 'off'
|
||
|
action:
|
||
|
- service: script.table_lights_off
|