Automation example for Lutron integration (#11115)

* added automation example

* added space, removed template
This commit is contained in:
Jon Gilmore 2019-11-07 04:27:41 -06:00 committed by Franck Nijhof
parent b1d6c55b83
commit a84f072356

View File

@ -73,3 +73,19 @@ After setup, scenes will appear in Home Assistant using the area, keypad and but
## Occupancy Sensors
Any configured Powr Savr occuancy sensors will be added as occupancy binary sensors. Lutron reports occupancy for an area, rather than reporting individual sensors. Sensitivity and timeouts are controlled on the sensors themselves, not in software.
## Example Automations
``` yaml
- alias: "keypad button pressed notification"
trigger:
- platform: event
event_type: lutron_event
event_data:
id: office_pico_on
action: single
action:
- service: notify.telegram
data:
message: "pico just turned on!"
```