From 6999238d613b328531d7a00f3ae8f6b76427f8b7 Mon Sep 17 00:00:00 2001 From: IIIdefconIII Date: Thu, 11 Oct 2018 22:03:08 +0200 Subject: [PATCH] Update light.hyperion.markdown (#6696) * Update light.hyperion.markdown * :pencil2: Tweak --- source/_components/light.hyperion.markdown | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/source/_components/light.hyperion.markdown b/source/_components/light.hyperion.markdown index c7622a1a3fc..622fdca3720 100644 --- a/source/_components/light.hyperion.markdown +++ b/source/_components/light.hyperion.markdown @@ -61,3 +61,22 @@ light: type: list default: "['HDMI', 'Cinema brighten lights', 'Cinema dim lights', 'Knight rider', 'Blue mood blobs', 'Cold mood blobs', 'Full color mood blobs', 'Green mood blobs', 'Red mood blobs', 'Warm mood blobs', 'Police Lights Single', 'Police Lights Solid', 'Rainbow mood', 'Rainbow swirl fast', 'Rainbow swirl', 'Random', 'Running dots', 'System Shutdown', 'Snake', 'Sparks Color', 'Sparks', 'Strobe blue', 'Strobe Raspbmc', 'Strobe white', 'Color traces', 'UDP multicast listener', 'UDP listener', 'X-Mas']" {% endconfiguration %} + +## {% linkable_title Example %} + +To start Hyperion with an effect, use the following automation: + +```yaml +automation: +- id: one + alias: Turn Hyperion effect on when light goes on + trigger: + - platform: state + entity_id: light.hyperion + to: 'on' + action: + - service: light.turn_on + data: + entity_id: light.hyperion + effect: "Full color mood blobs" +```