Updated content

This commit is contained in:
Paulus Schoutsen 2014-12-21 20:16:45 -08:00
parent db24b1bc1b
commit fd516a6784
5 changed files with 120 additions and 54 deletions

View file

@ -30,10 +30,14 @@ This setup allows us to create simple yet powerful logic for controlling your ho
If the sun has set and the lights are not on:
Turn on the lights
<!-- comment to seperate markdown blockquotes -->
In the event that the combined state of all tracked devices changes to 'Not Home':
If the lights are on:
Turn off the lights
<!-- comment to seperate markdown blockquotes -->
In the event of the sun setting:
If the lights are off and the combined state of all tracked device equals 'Home':
Turn on the lights
@ -44,8 +48,6 @@ By using the Bus as a central communication hub between components it is easy to
Home Assistant supports running multiple synchronzied instances using a master-slave model. Slaves forward all local events fired and states set to the master instance which will then replicate it to each slave.
Because each slave maintains its own ServiceRegistry it is possible to have multiple slaves respond to one service call.
<a href='{{ root_url }}/images/architecture-remote.png'>
<img src='{{ root_url }}/images/architecture-remote.png' class='no-shadow' />
</a>
@ -65,3 +67,7 @@ http.setup(hass, "my_local_api_password")
hass.start()
hass.block_till_stopped()
```
<div class='note'><p class='title'>Note</p><p class='content'>
Because each slave maintains its own ServiceRegistry it is possible to have multiple slaves respond to one service call.
</p></div>