Site updated at 2018-02-25 09:06:02 UTC

This commit is contained in:
Travis CI 2018-02-25 09:06:02 +00:00
parent d758b106b4
commit c4de7b068c
29 changed files with 83 additions and 80 deletions

View file

@ -76,6 +76,7 @@
</header>
<hr class="divider">
<p>When launched for the first time, Home Assistant will write a default configuration file enabling the web interface and device discovery. It can take up to a minute for your devices to be discovered and appear in the user interface.</p>
<p>The web interface can be found at <code class="highlighter-rouge">http://ip.ad.dre.ss:8123/</code> - for example if your Home Assistant system has the IP address <code class="highlighter-rouge">192.168.0.40</code> then youll find the web interface as <code class="highlighter-rouge">http://192.168.0.40:8123/</code>.</p>
<p>The location of the folder differs between operating systems:</p>
<table>
<thead>

View file

@ -96,12 +96,13 @@ The frontend has a template editor developer tool to help develop and debug temp
<span class="s">msg_who_is_home</span><span class="pi">:</span>
<span class="s">sequence</span><span class="pi">:</span>
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">notify.notify</span>
<span class="s">message</span><span class="pi">:</span> <span class="pi">&gt;</span>
<span class="no">{% if is_state('device_tracker.paulus', 'home') %}</span>
<span class="no">Ha, Paulus is home!</span>
<span class="no">{% else %}</span>
<span class="no">Paulus is at {{ states('device_tracker.paulus') }}.</span>
<span class="no">{% endif %}</span>
<span class="s">data_template</span><span class="pi">:</span>
<span class="s">message</span><span class="pi">:</span> <span class="pi">&gt;</span>
<span class="no">{% if is_state('device_tracker.paulus', 'home') %}</span>
<span class="no">Ha, Paulus is home!</span>
<span class="no">{% else %}</span>
<span class="no">Paulus is at {{ states('device_tracker.paulus') }}.</span>
<span class="no">{% endif %}</span>
</code></pre>
</div>
<p><a href="http://jinja.pocoo.org/">Jinja2</a> supports a wide variety of operations:</p>