Site updated at 2015-05-22 04:49:39 UTC
This commit is contained in:
parent
85a2976dd5
commit
dc82fc088e
20 changed files with 346 additions and 109 deletions
|
@ -208,10 +208,10 @@ This abstract class contains logic for integrating most standard features into
|
|||
your entities, such as visibility, entity IDs, updates, and many more. That is
|
||||
why it is best practice to reference the existing class.</p>
|
||||
|
||||
<p>A list of entities can be registered with Home Assitant using the <em>add_devices</em>
|
||||
<p>A list of entities can be registered with Home Assistant using the <em>add_devices</em>
|
||||
function that is provided as an input to <em>setup_platform</em>. Once entities are
|
||||
registered with with Home Assistant their updates will be provided to the core
|
||||
and the core will have control over them. For more information on how Entites
|
||||
and the core will have control over them. For more information on how Entities
|
||||
can be customized, take a look at the <a href="https://github.com/balloob/home-assistant/blob/master/homeassistant/helpers/entity.py#L18">Entity Abstract
|
||||
Class</a>.</p>
|
||||
|
||||
|
|
|
@ -164,7 +164,7 @@ components within Home Assistant.</p>
|
|||
Turn on the lights
|
||||
</code></pre>
|
||||
|
||||
<!-- comment to seperate markdown blockquotes -->
|
||||
<!-- comment to separate markdown blockquotes -->
|
||||
|
||||
|
||||
<pre><code>In the event that the combined state of all tracked devices changes to 'Not Home':
|
||||
|
@ -172,7 +172,7 @@ components within Home Assistant.</p>
|
|||
Turn off the lights
|
||||
</code></pre>
|
||||
|
||||
<!-- comment to seperate markdown blockquotes -->
|
||||
<!-- comment to separate markdown blockquotes -->
|
||||
|
||||
|
||||
<pre><code>In the event of the sun setting:
|
||||
|
@ -184,7 +184,7 @@ components within Home Assistant.</p>
|
|||
|
||||
<h3><a class='title-link' name='the-full-picture' href='#the-full-picture'></a> The full picture</h3>
|
||||
|
||||
<p>When we put all the different pieces of Home Assistant together we see that we match pretty close to the initial sketched home automation overview. The smart home AI is not implemented yet and therefor ommitted from the following picture.</p>
|
||||
<p>When we put all the different pieces of Home Assistant together we see that we match pretty close to the initial sketched home automation overview. The smart home AI is not implemented yet and therefor omitted from the following picture.</p>
|
||||
|
||||
<p class='img'>
|
||||
<a href='/images/architecture/ha_full_architecture.png'>
|
||||
|
|
|
@ -185,7 +185,7 @@ Home Assistant will use the directory that contains your config file as the dire
|
|||
<tbody>
|
||||
<tr>
|
||||
<td> <code>hass.states</code> </td>
|
||||
<td> This is the StateMachine. It allows you to set states and trach when they are changed. <a href="https://github.com/balloob/home-assistant/blob/master/homeassistant/__init__.py#L473">See available methods</a>. </td>
|
||||
<td> This is the StateMachine. It allows you to set states and track when they are changed. <a href="https://github.com/balloob/home-assistant/blob/master/homeassistant/__init__.py#L473">See available methods</a>. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> <code>hass.events</code> </td>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue