diff --git a/cookbook/foscam_away_mode_PTZ/index.html b/cookbook/foscam_away_mode_PTZ/index.html
index 6e9b2ee8f4..8d16a7a193 100644
--- a/cookbook/foscam_away_mode_PTZ/index.html
+++ b/cookbook/foscam_away_mode_PTZ/index.html
@@ -118,67 +118,81 @@
Foscam Cameras can be controlled by Home Assistant through a number of CGI commands.
The following outlines examples of the switch, services, and scripts required to move between 2 preset destinations while controlling motion detection, but many other options of movement are provided in the Foscam CGI User Guide linked above.
-The switch.foscam_motion
will control whether the motion detection is on or off. This switch supports statecmd
, which checks the current state of motion detection.
-yaml
-# Replace admin and password with an "Admin" priviledged Foscam user
-# Replace ipaddress with the local IP address of your Foscam
-switch:
- platform: command_line
- switches:
- #Switch for Foscam Motion Detection
- foscam_motion:
- oncmd: 'curl -k "https://ipaddress:443/cgi-bin/CGIProxy.fcgi?cmd=setMotionDetectConfig&isEnable=1&usr=admin&pwd=password"'
- offcmd: 'curl -k "https://ipaddress:443/cgi-bin/CGIProxy.fcgi?cmd=setMotionDetectConfig&isEnable=0&usr=admin&pwd=password"'
- statecmd: 'curl -k --silent "https://ipaddress:443/cgi-bin/CGIProxy.fcgi?cmd=getMotionDetectConfig&usr=admin&pwd=password" | grep -oP "(?<=isEnable>).*?(?=</isEnable>)"'
- value_template: ''
-
+The switch.foscam_motion
will control whether the motion detection is on or off. This switch supports statecmd
, which checks the current state of motion detection.
-The service shell_command.foscam_turn_off
sets the camera to point down and away to indicate it is not recording, and shell_command.foscam_turn_on
sets the camera to point where I’d like to record. h of these services require preset points to be added to your camera. See source above for additional information.
- yaml
- shell_command:
- #Created a preset point in Foscam Web Interface named Off which essentially points the camera down and away
- foscam_turn_off: 'curl -k "https://ipaddress:443/cgi-bin/CGIProxy.fcgi?cmd=ptzGotoPresetPoint&name=Off&usr=admin&pwd=password"'
- #Created a preset point in Foscam Web Interface named Main which points in the direction I would like to record
- foscam_turn_on: 'curl -k "https://ipaddress:443/cgi-bin/CGIProxy.fcgi?cmd=ptzGotoPresetPoint&name=Main&usr=admin&pwd=password"'
-
- The script.foscam_off
and script.foscam_on
can be used to set the motion detection appropriately, and then move the camera. These scripts can be called as part of an automation with device_tracker
triggers to set home
and not_home
modes for your Foscam and disable motion detection recording while home
.
-yaml
-script:
- foscam_off:
- sequence:
- - execute_service: switch.turn_off
- service_data:
- entity_id: switch.foscam_motion
- - service: shell_command.foscam_turn_off
- foscam_on:
- sequence:
- - execute_service: switch.turn_off
- service_data:
- entity_id: switch.foscam_motion
- - service: shell_command.foscam_turn_on
- - execute_service: switch.turn_on
- service_data:
- entity_id: switch.foscam_motion
-
+
+
+
+switch:
+ platform: command_line
+ switches:
+
+ foscam_motion:
+ oncmd: 'curl -k "https://ipaddress:443/cgi-bin/CGIProxy.fcgi?cmd=setMotionDetectConfig&isEnable=1&usr=admin&pwd=password"'
+ offcmd: 'curl -k "https://ipaddress:443/cgi-bin/CGIProxy.fcgi?cmd=setMotionDetectConfig&isEnable=0&usr=admin&pwd=password"'
+ statecmd: 'curl -k --silent "https://ipaddress:443/cgi-bin/CGIProxy.fcgi?cmd=getMotionDetectConfig&usr=admin&pwd=password" | grep -oP "(?<=isEnable>).*?(?=</isEnable>)"'
+ value_template: ''
+
+
+
+
+The service shell_command.foscam_turn_off
sets the camera to point down and away to indicate it is not recording, and shell_command.foscam_turn_on
sets the camera to point where I’d like to record. h of these services require preset points to be added to your camera. See source above for additional information.
+
+
+
shell_command:
+
+ foscam_turn_off: 'curl -k "https://ipaddress:443/cgi-bin/CGIProxy.fcgi?cmd=ptzGotoPresetPoint&name=Off&usr=admin&pwd=password"'
+
+ foscam_turn_on: 'curl -k "https://ipaddress:443/cgi-bin/CGIProxy.fcgi?cmd=ptzGotoPresetPoint&name=Main&usr=admin&pwd=password"'
+
+
+
+
+The script.foscam_off
and script.foscam_on
can be used to set the motion detection appropriately, and then move the camera. These scripts can be called as part of an automation with device_tracker
triggers to set home
and not_home
modes for your Foscam and disable motion detection recording while home
.
+
+
+
script:
+ foscam_off:
+ sequence:
+ - execute_service: switch.turn_off
+ service_data:
+ entity_id: switch.foscam_motion
+ - service: shell_command.foscam_turn_off
+ foscam_on:
+ sequence:
+ - execute_service: switch.turn_off
+ service_data:
+ entity_id: switch.foscam_motion
+ - service: shell_command.foscam_turn_on
+ - execute_service: switch.turn_on
+ service_data:
+ entity_id: switch.foscam_motion
+
+
+
To automate Foscam being set to “on” (facing the correct way with motion sensor on), I used the following simple automation:
-```yaml
-automation:
- - alias: Set Foscam to Away Mode when I leave home
- trigger:
- platform: state
- entity_id: group.family
- from: ‘home’
- action:
- service: script.foscam_on
- - alias: Set Foscam to Home Mode when I arrive Home
- trigger:
- platform: state
- entity_id: group.family
- to: ‘home’
- action:
- service: script.foscam_off
+
+
automation:
+ - alias: Set Foscam to Away Mode when I leave home
+ trigger:
+ platform: state
+ entity_id: group.family
+ from: 'home'
+ action:
+ service: script.foscam_on
+ - alias: Set Foscam to Home Mode when I arrive Home
+ trigger:
+ platform: state
+ entity_id: group.family
+ to: 'home'
+ action:
+ service: script.foscam_off
+
+
+
+
diff --git a/sitemap.xml b/sitemap.xml
index 342a0fe7b9..1062f34ede 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -1252,622 +1252,622 @@
https://home-assistant.io/components/alarm_control_panel.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/alarm_control_panel.manual.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/alarm_control_panel.mqtt.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/arduino.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/automation.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/browser.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/camera.foscam.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/camera.generic.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/configurator.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/conversation.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/device_sun_light_trigger.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/device_tracker.actiontec.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/device_tracker.aruba.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/device_tracker.asuswrt.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/device_tracker.ddwrt.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/device_tracker.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/device_tracker.locative.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/device_tracker.luci.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/device_tracker.mqtt.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/device_tracker.netgear.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/device_tracker.nmap_scanner.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/device_tracker.owntracks.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/device_tracker.snmp.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/device_tracker.thomson.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/device_tracker.tomato.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/device_tracker.tplink.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/device_tracker.ubus.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/discovery.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/downloader.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/ecobee.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/group.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/history.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/ifttt.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/ifttt.manything.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/introduction.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/isy994.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/keyboard.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/light.blinksticklight.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/light.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/light.hue.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/light.hyperion.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/light.limitlessled.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/light.rfxtrx.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/light.tellstick.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/light.vera.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/light.wink.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/lock.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/lock.wink.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/logbook.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/media_player.cast.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/media_player.denon.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/media_player.firetv.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/media_player.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/media_player.itunes.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/media_player.kodi.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/media_player.mpd.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/media_player.plex.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/media_player.sonos.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/media_player.squeezebox.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/modbus.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/mqtt.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/notify.file.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/notify.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/notify.instapush.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/notify.nma.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/notify.pushbullet.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/notify.pushover.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/notify.slack.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/notify.smtp.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/notify.syslog.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/notify.telegram.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/notify.xmpp.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/rfxtrx.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/scene.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/script.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.arduino.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.arest.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.bitcoin.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.command_sensor.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.cpuspeed.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.dht.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.ecobee.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.efergy.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.forecast.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.glances.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.modbus.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.mqtt.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.mysensors.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.openweathermap.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.rest.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.rfxtrx.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.rpi_gpio.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.sabnzbd.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.speedtest.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.swiss_public_transport.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.systemmonitor.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.tellstick.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.temper.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.time_date.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.transmission.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.vera.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.wink.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sensor.worldclock.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/shell_command.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/simple_alarm.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/sun.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/switch.arduino.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/switch.arest.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/switch.command_switch.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/switch.edimax.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/switch.hikvision.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/switch.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/switch.modbus.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/switch.mqtt.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/switch.rest.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/switch.rfxtrx.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/switch.rpi_gpio.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/switch.tellstick.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/switch.transmission.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/switch.vera.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/switch.wemo.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/switch.wink.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/tellstick.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/thermostat.ecobee.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/thermostat.heat_control.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/thermostat.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/thermostat.nest.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/thermostat.radiotherm.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/vera.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/verisure.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/wink.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/zone.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/components/zwave.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/demo/frontend.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/demo/index.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/developers/add_new_platform.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/developers/api.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/developers/architecture.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/developers/creating_components.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/developers/credits.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/developers/frontend.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/developers/python_api.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/developers/rest_api.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/developers/website.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/getting-started/android.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/getting-started/automation.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/getting-started/autostart.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/getting-started/configuration.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/getting-started/devices.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/getting-started/presence-detection.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/getting-started/troubleshooting-configuration.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/getting-started/troubleshooting.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/googlef4f3693c209fe788.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00
https://home-assistant.io/static/mdi-demo.html
- 2016-03-12T12:15:29+00:00
+ 2016-03-12T12:36:01+00:00