From 6d61ba84e59caed9580cb59a614bbbb6324dc002 Mon Sep 17 00:00:00 2001 From: emontnemery Date: Sun, 17 Mar 2019 13:52:27 +0100 Subject: [PATCH] Update light docs to clarify brightness 0 turns the light off (#8967) Update light docs to clarify brightness 0 turns the light off according to home-assistant/architecture#119 --- source/_components/light.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_components/light.markdown b/source/_components/light.markdown index 4518421db67..6cf65ed9b8a 100644 --- a/source/_components/light.markdown +++ b/source/_components/light.markdown @@ -40,8 +40,8 @@ Most lights do not support all attributes. You can check the platform documentat | `color_temp` | yes | An integer in mireds representing the color temperature you want the light to be. | `kelvin` | yes | Alternatively, you can specify the color temperature in Kelvin. | `color_name` | yes | A human-readable string of a color name, such as `blue` or `goldenrod`. All [CSS3 color names](https://www.w3.org/TR/css-color-3/#svg-color) are supported. -| `brightness` | yes | Integer between 0 and 255 for how bright the light should be. -| `brightness_pct`| yes | Alternatively, you can specify brightness in percent (a number between 0 and 100). +| `brightness` | yes | Integer between 0 and 255 for how bright the light should be, where 0 means the light is off, 1 is the minimum brightness and 255 is the maximum brightness supported by the light. +| `brightness_pct`| yes | Alternatively, you can specify brightness in percent (a number between 0 and 100), where 0 means the light is off, 1 is the minimum brightness and 100 is the maximum brightness supported by the light. | `flash` | yes | Tell light to flash, can be either value `short` or `long`. | `effect`| yes | Applies an effect such as `colorloop` or `random`.