Added automation for vacation mode
This commit is contained in:
parent
79f43db02c
commit
5f344c90fa
|
@ -17,8 +17,6 @@
|
||||||
- service: input_boolean.turn_on
|
- service: input_boolean.turn_on
|
||||||
entity_id: input_boolean.jeff_heading_home
|
entity_id: input_boolean.jeff_heading_home
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
##### Jeff Traffic Alerts
|
##### Jeff Traffic Alerts
|
||||||
- alias: Enable Jeff Bad Traffic Home
|
- alias: Enable Jeff Bad Traffic Home
|
||||||
trigger:
|
trigger:
|
||||||
|
@ -47,4 +45,23 @@
|
||||||
state: 'on'
|
state: 'on'
|
||||||
action:
|
action:
|
||||||
- service: input_boolean.turn_off
|
- service: input_boolean.turn_off
|
||||||
entity_id: input_boolean.jeff_traffic_alert_home
|
entity_id: input_boolean.jeff_traffic_alert_home
|
||||||
|
|
||||||
|
- alias: Enable Vacation Mode
|
||||||
|
trigger:
|
||||||
|
- platform: numeric_state
|
||||||
|
entity_id: sensor.jeff_ett_home
|
||||||
|
above: 180
|
||||||
|
- platform: numeric_state
|
||||||
|
entity_id: sensor.kat_ett_home
|
||||||
|
above: 180
|
||||||
|
condition:
|
||||||
|
- condition: numeric_state
|
||||||
|
entity_id: sensor.jeff_ett_home
|
||||||
|
above: 180
|
||||||
|
- condition: numeric_state
|
||||||
|
entity_id: sensor.kat_ett_home
|
||||||
|
above: 180
|
||||||
|
action:
|
||||||
|
- service: input_boolean.turn_on
|
||||||
|
entity_id: input_boolean.vacation_mode
|
||||||
|
|
Loading…
Reference in New Issue