Site updated at 2017-06-16 06:53:36 UTC

This commit is contained in:
Travis CI 2017-06-16 06:53:36 +00:00
parent dc39d40540
commit 9d823e4c00
27 changed files with 48 additions and 43 deletions

View file

@ -90,12 +90,12 @@ The light component supports multiple entries in <code>configuration.yaml</code>
<tr>
<td><code class="highlighter-rouge">transition</code></td>
<td>yes</td>
<td>Integer that represents the time the light should take to transition to the new state in seconds.</td>
<td>Number that represents the time (in seconds) the light should take to transition to the new state.</td>
</tr>
<tr>
<td><code class="highlighter-rouge">profile</code></td>
<td>yes</td>
<td>String with the name of one of the <a href="https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/light/light_profiles.csv">built-in profiles</a> (relax, energize, concentrate, reading) or one of the custom profiles defined in <code class="highlighter-rouge">light_profiles.csv</code> in the current working directory. Light profiles define a xy color and a brightness. If a profile is given and a brightness or xy color then the profile values will be overwritten.</td>
<td>String with the name of one of the <a href="https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/light/light_profiles.csv">built-in profiles</a> (relax, energize, concentrate, reading) or one of the custom profiles defined in <code class="highlighter-rouge">light_profiles.csv</code> in the current working directory. Light profiles define a xy color and a brightness. If a profile is given and a brightness then the profile brightness will be overwritten.</td>
</tr>
<tr>
<td><code class="highlighter-rouge">xy_color</code></td>
@ -107,10 +107,15 @@ The light component supports multiple entries in <code>configuration.yaml</code>
<td>yes</td>
<td>A list containing three integers representing the rgb color you want the light to be. Three comma separated integers that represent the color in RGB. You can find a great chart here: <a href="http://www.developers.meethue.com/documentation/hue-xy-values">Hue Color Chart</a></td>
</tr>
<tr>
<td><code class="highlighter-rouge">white_value</code></td>
<td>yes</td>
<td>Integer between 0 and 255 for how bright a dedicated white LED should be.</td>
</tr>
<tr>
<td><code class="highlighter-rouge">color_temp</code></td>
<td>yes</td>
<td>An INT in mireds representing the color temperature you want the light to be.</td>
<td>An integer in mireds representing the color temperature you want the light to be.</td>
</tr>
<tr>
<td><code class="highlighter-rouge">kelvin</code></td>

View file

@ -84,7 +84,7 @@
<li><strong>name</strong> (<em>Required</em>): Setting the parameter <code class="highlighter-rouge">name</code> sets the name of the group.</li>
<li><strong>services</strong> (<em>Required</em>): A list of all the services to be included in the group.
<ul>
<li><strong>service</strong> (<em>Required</em>): The service part of an entity ID, i.e. if you use <code class="highlighter-rouge">notify.html5</code> normally, just put <code class="highlighter-rouge">html5</code>.</li>
<li><strong>service</strong> (<em>Required</em>): The service part of an entity ID, i.e. if you use <code class="highlighter-rouge">notify.html5</code> normally, just put <code class="highlighter-rouge">html5</code>. Note that you must put everything in lower case here. Although you might have capitals written in the actual notification services!</li>
<li><strong>data</strong> (<em>Optional</em>): A dictionary containing parameters to add to all notify payloads. This can be anything that is valid to use in a payload, such as <code class="highlighter-rouge">data</code>, <code class="highlighter-rouge">message</code>, <code class="highlighter-rouge">target</code>, <code class="highlighter-rouge">title</code>.</li>
</ul>
</li>