mirror of
https://github.com/CeeWeasel/fresh-home.git
synced 2026-08-09 18:40:14 -04:00
18 lines
384 B
YAML
18 lines
384 B
YAML
alias: 'Garage Occupied'
|
|
id: automation_garage_occupied
|
|
mode: restart
|
|
trigger:
|
|
- platform: state
|
|
entity_id: binary_sensor.garage_occupied
|
|
to: 'on'
|
|
condition:
|
|
# Computer area was not already occupied
|
|
- condition: state
|
|
entity_id: input_boolean.garage_occupied
|
|
state: 'off'
|
|
|
|
action:
|
|
- service: input_boolean.turn_on
|
|
entity_id: input_boolean.garage_occupied
|
|
|