diff --git a/atom.xml b/atom.xml index 2e11b13947..c24b95270b 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Home Assistant]]> - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 https://home-assistant.io/ diff --git a/blog/categories/architecture/atom.xml b/blog/categories/architecture/atom.xml index 7e65764345..252647afd8 100644 --- a/blog/categories/architecture/atom.xml +++ b/blog/categories/architecture/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: architecture | Home Assistant]]> - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 https://home-assistant.io/ diff --git a/blog/categories/branding/atom.xml b/blog/categories/branding/atom.xml index e3c9e08325..636448100a 100644 --- a/blog/categories/branding/atom.xml +++ b/blog/categories/branding/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: branding | Home Assistant]]> - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 https://home-assistant.io/ diff --git a/blog/categories/component/atom.xml b/blog/categories/component/atom.xml index 5eea12d820..8d360ce5a4 100644 --- a/blog/categories/component/atom.xml +++ b/blog/categories/component/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: component | Home Assistant]]> - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 https://home-assistant.io/ diff --git a/blog/categories/core/atom.xml b/blog/categories/core/atom.xml index a802ce582e..aa5a650abb 100644 --- a/blog/categories/core/atom.xml +++ b/blog/categories/core/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: core | Home Assistant]]> - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 https://home-assistant.io/ diff --git a/blog/categories/frontend/atom.xml b/blog/categories/frontend/atom.xml index 50f2f3e8f3..7bc6b21190 100644 --- a/blog/categories/frontend/atom.xml +++ b/blog/categories/frontend/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: frontend | Home Assistant]]> - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 https://home-assistant.io/ diff --git a/blog/categories/how-to/atom.xml b/blog/categories/how-to/atom.xml index 95479ea502..8b6a34ac83 100644 --- a/blog/categories/how-to/atom.xml +++ b/blog/categories/how-to/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: how-to | Home Assistant]]> - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 https://home-assistant.io/ diff --git a/blog/categories/release-notes/atom.xml b/blog/categories/release-notes/atom.xml index e95853773c..42d38c83f7 100644 --- a/blog/categories/release-notes/atom.xml +++ b/blog/categories/release-notes/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: release-notes | Home Assistant]]> - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 https://home-assistant.io/ diff --git a/blog/categories/user-stories/atom.xml b/blog/categories/user-stories/atom.xml index bf9dd49d7f..118d033ae0 100644 --- a/blog/categories/user-stories/atom.xml +++ b/blog/categories/user-stories/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: user-stories | Home Assistant]]> - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 https://home-assistant.io/ diff --git a/blog/categories/website/atom.xml b/blog/categories/website/atom.xml index a5a4e2447e..8e79542fb7 100644 --- a/blog/categories/website/atom.xml +++ b/blog/categories/website/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: website | Home Assistant]]> - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 https://home-assistant.io/ diff --git a/components/device_tracker.html b/components/device_tracker.html index f007002009..6d2ca3b45f 100644 --- a/components/device_tracker.html +++ b/components/device_tracker.html @@ -145,6 +145,7 @@ 13 14 15 +16
# Example configuration.yaml entry for Netgear device
 device_tracker:
   platform: netgear
@@ -154,11 +155,12 @@
 
   # Optional configuration
 
-  # If new devices have to be added to the UI and tracked by default (default: yes)
+  # If new discovered devices are tracked by default (default: yes)
   track_new_devices: yes
-  # How often to scan for new devices (default: 12)
+  # Seconds between each scan for new devices (default: 12)
   interval_seconds: 12
-  # Seconds to wait till marking someone as not home after not being seen (default: 180)
+  # Seconds to wait till marking someone as not home after not being seen
+  # (default: 180)
   consider_home: 180
 
diff --git a/components/device_tracker.nmap_scanner.html b/components/device_tracker.nmap_scanner.html index 06afb8c6e4..0cded2f942 100644 --- a/components/device_tracker.nmap_scanner.html +++ b/components/device_tracker.nmap_scanner.html @@ -106,9 +106,12 @@

-As an alternative to the router-based device tracking, it is possible to directly scan the network for devices by using Nmap. The IP addresses to scan can be specified in any format that Nmap understands, including the network-prefix notation (192.168.1.1/24) and the range notation (192.168.1.1-255).

+As an alternative to the router-based device tracking, it is possible to directly scan the network +for devices by using Nmap. The IP addresses to scan can be specified in any format that Nmap understands, +including the network-prefix notation (192.168.1.1/24) and the range notation (192.168.1.1-255).

-

If you’re on Debian or Ubuntu, you might have to install the packages for arp and nmap. Do so by running apt-get install net-tools nmap.

+

If you’re on Debian or Ubuntu, you might have to install the packages for arp and nmap. Do so by +running apt-get install net-tools nmap.

1
 2
@@ -122,9 +125,11 @@ As an alternative to the router-based device tracking, it is possible to directl
   home_interval: 10
-

home_interval is an optional value set in minutes. This will be the number of minutes to exclude devices from a scan while they are home. This is useful for iOS users that are experiencing issues where thier iDevices drop off the network for periods in order to save battery life.

+

home_interval is an optional value set in minutes. This will be the number of minutes nmap will not +scan this device, assuming it is home, in order to preserve the device battery.

-

See the device tracker component page for instructions how to configure the people to be tracked.

+

See the device tracker component page for instructions how to +configure the people to be tracked.

diff --git a/sitemap.xml b/sitemap.xml index 5819516089..d3b7dcbfe8 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -127,691 +127,691 @@ https://home-assistant.io/developers/add_new_platform.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/getting-started/android.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/developers/api.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/developers/architecture.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/arduino.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/automation.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/getting-started/automation.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/getting-started/autostart.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/browser.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/camera.foscam.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/camera.generic.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/getting-started/configuration.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/configurator.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/conversation.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/developers/creating_components.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/developers/credits.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/device_sun_light_trigger.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.actiontec.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.aruba.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.asuswrt.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.ddwrt.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.luci.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.mqtt.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.netgear.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.nmap_scanner.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.thomson.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.tomato.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.tplink.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/getting-started/devices.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/discovery.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/downloader.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/developers/frontend.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/group.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/history.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/ifttt.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/ - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 1.0 https://home-assistant.io/blog/ - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/blog/archives/ - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/getting-started/ - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/ - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/help/ - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/developers/ - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/isy994.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/keyboard.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/light.hue.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/light.limitlessled.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/light.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/logbook.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/media_player.cast.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/media_player.denon.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/media_player.itunes.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/media_player.kodi.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/media_player.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/media_player.mpd.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/media_player.sonos.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/media_player.squeezebox.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/modbus.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/mqtt.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/notify.file.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/notify.instapush.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/notify.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/notify.nma.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/notify.pushbullet.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/notify.pushover.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/notify.slack.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/notify.smtp.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/notify.syslog.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/notify.xmpp.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/developers/python_api.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/developers/rest_api.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/scene.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/script.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sensor.arduino.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sensor.arest.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sensor.bitcoin.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sensor.command_sensor.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sensor.dht.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sensor.efergy.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sensor.forecast.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sensor.glances.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sensor.mqtt.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sensor.mysensors.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sensor.openweathermap.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sensor.rfxtrx.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sensor.rpi_gpio.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sensor.sabnzbd.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sensor.swiss_public_transport.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sensor.systemmonitor.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sensor.temper.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sensor.time_date.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sensor.transmission.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/simple_alarm.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/sun.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/switch.arduino.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/switch.arest.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/switch.command_switch.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/switch.edimax.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/switch.hikvision.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/switch.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/switch.mqtt.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/switch.rpi_gpio.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/switch.transmission.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/switch.wemo.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/tellstick.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/thermostat.heat_control.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/thermostat.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/thermostat.nest.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/getting-started/troubleshooting-configuration.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/getting-started/troubleshooting.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/vera.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/verisure.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/developers/website.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/wink.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7 https://home-assistant.io/components/zwave.html - 2015-09-21T18:54:54-07:00 + 2015-09-21T18:59:47-07:00 weekly 0.7