mirror of
https://github.com/CeeWeasel/fresh-home.git
synced 2026-08-09 18:40:14 -04:00
34 lines
829 B
YAML
34 lines
829 B
YAML
initial_state: 'on'
|
|
id: automation_car_home
|
|
alias: Car Home
|
|
trigger:
|
|
- platform: state
|
|
entity_id:
|
|
- binary_sensor.gray_suv_east_side
|
|
- binary_sensor.gray_suv_west_side
|
|
to: 'on'
|
|
|
|
- platform: homeassistant
|
|
event: start
|
|
condition:
|
|
- condition: state
|
|
entity_id: input_boolean.car_home
|
|
state: 'off'
|
|
- condition: or
|
|
conditions:
|
|
- condition: state
|
|
entity_id: binary_sensor.gray_suv_east_side
|
|
state: 'on'
|
|
- condition: state
|
|
entity_id: binary_sensor.gray_suv_west_side
|
|
state: 'on'
|
|
- condition: state
|
|
entity_id: binary_sensor.east_side_vehicle_occupancy
|
|
state: 'on'
|
|
- condition: state
|
|
entity_id: binary_sensor.west_side_vehicle_occupancy
|
|
state: 'on'
|
|
|
|
action:
|
|
- service: input_boolean.turn_on
|
|
entity_id: input_boolean.car_home |