From a84f072356e36925c5034c2d7e2f7cd900683130 Mon Sep 17 00:00:00 2001 From: Jon Gilmore <7232986+JonGilmore@users.noreply.github.com> Date: Thu, 7 Nov 2019 04:27:41 -0600 Subject: [PATCH] Automation example for Lutron integration (#11115) * added automation example * added space, removed template --- source/_integrations/lutron.markdown | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/source/_integrations/lutron.markdown b/source/_integrations/lutron.markdown index 7fff4ee7543..e1c8c7b65b8 100644 --- a/source/_integrations/lutron.markdown +++ b/source/_integrations/lutron.markdown @@ -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!" +```