Site updated at 2015-07-07 03:51:27 UTC

This commit is contained in:
Paulus Schoutsen 2015-07-06 20:51:27 -07:00
parent a699ae115d
commit 853a81fe69
10 changed files with 95 additions and 102 deletions

View file

@ -4,7 +4,7 @@
<title><![CDATA[Home Assistant]]></title>
<link href="https://home-assistant.io/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2015-06-30T22:57:52-07:00</updated>
<updated>2015-07-06T20:51:19-07:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: architecture | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/architecture/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2015-06-30T22:57:52-07:00</updated>
<updated>2015-07-06T20:51:19-07:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: branding | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/branding/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2015-06-30T22:57:52-07:00</updated>
<updated>2015-07-06T20:51:19-07:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: component | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/component/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2015-06-30T22:57:52-07:00</updated>
<updated>2015-07-06T20:51:19-07:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: core | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/core/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2015-06-30T22:57:52-07:00</updated>
<updated>2015-07-06T20:51:19-07:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: frontend | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/frontend/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2015-06-30T22:57:52-07:00</updated>
<updated>2015-07-06T20:51:19-07:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: release-notes | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/release-notes/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2015-06-30T22:57:52-07:00</updated>
<updated>2015-07-06T20:51:19-07:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: website | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/website/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2015-06-30T22:57:52-07:00</updated>
<updated>2015-07-06T20:51:19-07:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -121,15 +121,18 @@ Installing and running Home Assistant on your local machine is easy. Make sure y
<span class='line-number'>2</span>
<span class='line-number'>3</span>
<span class='line-number'>4</span>
<span class='line-number'>5</span>
</pre></td><td class='code'><pre><code class='bash'><span class='line'>git clone --recursive https://github.com/balloob/home-assistant.git
</span><span class='line'>python3 -m venv home-assistant
</span><span class='line'><span class="nb">cd </span>home-assistant
</span><span class='line'>python3 -m pip install --user -r requirements.txt
</span><span class='line'>python3 -m pip install -r requirements.txt
</span><span class='line'>python3 -m homeassistant --open-ui
</span></code></pre></td></tr></table></div></figure>
</p>
<p>Running these commands will:</p>
<ol>
<li>Download Home Assistant</li>
<li>Setup an isolated environment</li>
<li>Navigate to downloaded files</li>
<li>Install the dependencies</li>
<li>Launch Home Assistant and serve web interface on <a href='http://localhost:8123'>http://localhost:8123</a></li>
@ -137,7 +140,7 @@ Installing and running Home Assistant on your local machine is easy. Make sure y
<p>If you run into any issues, please see the <a href='/getting-started/troubleshooting.html'>troubleshooting page</a>.</p>
<p class='note'>
You can run Home Assistant in demo mode by appending <code>--demo-mode</code> to line 4.
You can run Home Assistant in demo mode by appending <code>--demo-mode</code> to line 5.
</p>
<p class='note'>
@ -159,9 +162,6 @@ Installing and running Home Assistant on your local machine is easy. Make sure y
When using boot2docker on OS X you are unable to map the local time to your Docker container. Replace <code>-v /etc/localtime:/etc/localtime:ro</code> with <code>-e "TZ=America/Los_Angeles"</code> (replacing America/Los_Angeles with <a href='http://en.wikipedia.org/wiki/List_of_tz_database_time_zones'>your timezone</a>)
</p>
<p class='note warning'>
Home Assistant currently does not fare well if server and client are in different time zones.
</p>
</div>
<div class='install-instructions raspberry'>
@ -238,17 +238,10 @@ NOTE: the rest of the commands are not being run as sudo and will install python
<p>It will be up and running on port 8123</p>
<p class='note'>
You can run Home Assistant in demo mode by appending <code>--demo-mode</code> to line 4.
</p>
<p class='note'>
If you want to update to the latest version in the future, run: <code>scripts/update</code>.
</p>
<p class='note warning'>
Home Assistant currently does not fare well if server and client are in different time zones.
</p>
</div>
</div>

View file

@ -82,493 +82,493 @@
</url>
<url>
<loc>https://home-assistant.io/developers/add_new_platform.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/getting-started/android.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/developers/api.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/developers/architecture.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/arduino.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/automation.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/browser.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/getting-started/configuration.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/configurator.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/conversation.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/developers/creating_components.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/developers/credits.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/device_sun_light_trigger.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/device_tracker.ddwrt.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/device_tracker.luci.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/device_tracker.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/device_tracker.netgear.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/device_tracker.nmap_scanner.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/device_tracker.tomato.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/device_tracker.tplink.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/discovery.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/downloader.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/developers/frontend.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/group.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/help/help.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/history.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>https://home-assistant.io/blog/</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/blog/archives/</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/getting-started/</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/developers/</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/isy994.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/keyboard.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/light.hue.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/light.limitlessled.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/light.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/logbook.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/media_player.cast.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/media_player.kodi.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/media_player.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/media_player.mpd.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/modbus.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/notify.file.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/notify.instapush.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/notify.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/notify.nma.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/notify.pushbullet.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/notify.pushover.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/notify.smtp.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/notify.syslog.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/notify.xmpp.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/developers/python_api.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/developers/rest_api.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/scene.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/scheduler.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/script.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sensor.bitcoin.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sensor.forecast.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sensor.mysensors.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sensor.openweathermap.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sensor.sabnzbd.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sensor.swiss_public_transport.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sensor.systemmonitor.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sensor.time_date.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sensor.transmission.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/simple_alarm.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sun.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/switch.command_switch.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/switch.hikvision.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/switch.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/switch.transmission.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/switch.wemo.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/tellstick.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/thermostat.heat_control.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/thermostat.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/thermostat.nest.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/getting-started/troubleshooting.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/vera.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/developers/website.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/wink.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/zwave.html</loc>
<lastmod>2015-06-30T22:57:52-07:00</lastmod>
<lastmod>2015-07-06T20:51:19-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>