23 lines
505 B
YAML
23 lines
505 B
YAML
---
|
|
- alias: "[Aisle] Occupancy to True"
|
|
trigger:
|
|
platform: state
|
|
entity_id:
|
|
- binary_sensor.presence_aisle_sensor_1
|
|
from: "off"
|
|
to: "on"
|
|
action:
|
|
service: input_boolean.turn_on
|
|
entity_id: input_boolean.occupancy_aisle
|
|
|
|
- alias: "[Aisle] Occupancy to False"
|
|
trigger:
|
|
platform: state
|
|
entity_id:
|
|
- binary_sensor.presence_aisle_sensor_1
|
|
from: "on"
|
|
to: "off"
|
|
action:
|
|
service: input_boolean.turn_off
|
|
entity_id: input_boolean.occupancy_aisle
|