diff --git a/atom.xml b/atom.xml index 6bd59ea421..e9eb59e474 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Home Assistant]]> - 2016-04-14T15:49:48+00:00 + 2016-04-14T16:43:58+00:00 https://home-assistant.io/ diff --git a/blog/categories/branding/atom.xml b/blog/categories/branding/atom.xml index 17e9426088..4b5d78e646 100644 --- a/blog/categories/branding/atom.xml +++ b/blog/categories/branding/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Branding | Home Assistant]]> - 2016-04-14T15:49:48+00:00 + 2016-04-14T16:43:58+00:00 https://home-assistant.io/ diff --git a/blog/categories/community/atom.xml b/blog/categories/community/atom.xml index d49fa7ada6..9f56fe70cb 100644 --- a/blog/categories/community/atom.xml +++ b/blog/categories/community/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Community | Home Assistant]]> - 2016-04-14T15:49:48+00:00 + 2016-04-14T16:43:58+00:00 https://home-assistant.io/ diff --git a/blog/categories/esp8266/atom.xml b/blog/categories/esp8266/atom.xml index a5c2ef11ac..7f47a27866 100644 --- a/blog/categories/esp8266/atom.xml +++ b/blog/categories/esp8266/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: ESP8266 | Home Assistant]]> - 2016-04-14T15:49:48+00:00 + 2016-04-14T16:43:58+00:00 https://home-assistant.io/ diff --git a/blog/categories/how-to/atom.xml b/blog/categories/how-to/atom.xml index dabe2c6c8c..33988aa773 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]]> - 2016-04-14T15:49:48+00:00 + 2016-04-14T16:43:58+00:00 https://home-assistant.io/ diff --git a/blog/categories/internet-of-things/atom.xml b/blog/categories/internet-of-things/atom.xml index e1722f6eed..631bb859d5 100644 --- a/blog/categories/internet-of-things/atom.xml +++ b/blog/categories/internet-of-things/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Internet-of-Things | Home Assistant]]> - 2016-04-14T15:49:48+00:00 + 2016-04-14T16:43:58+00:00 https://home-assistant.io/ diff --git a/blog/categories/mqtt/atom.xml b/blog/categories/mqtt/atom.xml index 0df34661d9..7c278dda0e 100644 --- a/blog/categories/mqtt/atom.xml +++ b/blog/categories/mqtt/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: MQTT | Home Assistant]]> - 2016-04-14T15:49:48+00:00 + 2016-04-14T16:43:58+00:00 https://home-assistant.io/ diff --git a/blog/categories/public-service-announcement/atom.xml b/blog/categories/public-service-announcement/atom.xml index 7df015abb6..07ca471763 100644 --- a/blog/categories/public-service-announcement/atom.xml +++ b/blog/categories/public-service-announcement/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Public-Service-Announcement | Home Assistant]]> - 2016-04-14T15:49:48+00:00 + 2016-04-14T16:43:58+00:00 https://home-assistant.io/ diff --git a/blog/categories/release-notes/atom.xml b/blog/categories/release-notes/atom.xml index af7c337ac2..9cc7b7d375 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]]> - 2016-04-14T15:49:48+00:00 + 2016-04-14T16:43:58+00:00 https://home-assistant.io/ diff --git a/blog/categories/survey/atom.xml b/blog/categories/survey/atom.xml index 3d3c109c4b..5e4600efc3 100644 --- a/blog/categories/survey/atom.xml +++ b/blog/categories/survey/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Survey | Home Assistant]]> - 2016-04-14T15:49:48+00:00 + 2016-04-14T16:43:58+00:00 https://home-assistant.io/ diff --git a/blog/categories/user-stories/atom.xml b/blog/categories/user-stories/atom.xml index e185c42daf..022198caf2 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]]> - 2016-04-14T15:49:48+00:00 + 2016-04-14T16:43:58+00:00 https://home-assistant.io/ diff --git a/components/binary_sensor.mysensors/index.html b/components/binary_sensor.mysensors/index.html index b18dcfc6ca..1586c8ae15 100644 --- a/components/binary_sensor.mysensors/index.html +++ b/components/binary_sensor.mysensors/index.html @@ -179,50 +179,53 @@

Example sketch

-

```c++
-/**
- * Documentation: http://www.mysensors.org
- * Support Forum: http://forum.mysensors.org
- *
- * http://www.mysensors.org/build/binary
- */

+
+
/**
+ * Documentation: http://www.mysensors.org
+ * Support Forum: http://forum.mysensors.org
+ *
+ * http://www.mysensors.org/build/binary
+ */
 
-

#include -#include -#include

-

#define SN “BinarySensor”
-#define SV “1.0”
-#define CHILD_ID 1
-#define BUTTON_PIN 3 // Arduino Digital I/O pin for button/reed switch.

+#include <MySensor.h> +#include <SPI.h> +#include <Bounce2.h> -

MySensor gw;
-Bounce debouncer = Bounce();
-MyMessage msg(CHILD_ID, V_TRIPPED);

+#define SN "BinarySensor" +#define SV "1.0" +#define CHILD_ID 1 +#define BUTTON_PIN 3 // Arduino Digital I/O pin for button/reed switch. -

void setup()
-{
- gw.begin();
- gw.sendSketchInfo(SN, SV);
- // Setup the button.
- pinMode(BUTTON_PIN, INPUT_PULLUP);
- // After setting up the button, setup debouncer.
- debouncer.attach(BUTTON_PIN);
- debouncer.interval(5);
- gw.present(CHILD_ID, S_DOOR);
- gw.send(msg.set(0));
-}

+MySensor gw; +Bounce debouncer = Bounce(); +MyMessage msg(CHILD_ID, V_TRIPPED); -

void loop()
-{
- if (debouncer.update()) {
- // Get the update value.
- int value = debouncer.read();
- // Send in the new value.
- gw.send(msg.set(value == LOW ? 1 : 0));
- }
-}
-```

+void setup() +{ + gw.begin(); + gw.sendSketchInfo(SN, SV); + // Setup the button. + pinMode(BUTTON_PIN, INPUT_PULLUP); + // After setting up the button, setup debouncer. + debouncer.attach(BUTTON_PIN); + debouncer.interval(5); + gw.present(CHILD_ID, S_DOOR); + gw.send(msg.set(0)); +} + +void loop() +{ + if (debouncer.update()) { + // Get the update value. + int value = debouncer.read(); + // Send in the new value. + gw.send(msg.set(value == LOW ? 1 : 0)); + } +} +
+
+
diff --git a/components/light.mysensors/index.html b/components/light.mysensors/index.html index e675459ff0..a439d7f17f 100644 --- a/components/light.mysensors/index.html +++ b/components/light.mysensors/index.html @@ -161,77 +161,80 @@

Example sketch

-

```c++
-/*
- * Documentation: http://www.mysensors.org
- * Support Forum: http://forum.mysensors.org
- *
- * http://www.mysensors.org/build/dimmer
- */

+
+
/*
+ * Documentation: http://www.mysensors.org
+ * Support Forum: http://forum.mysensors.org
+ *
+ * http://www.mysensors.org/build/dimmer
+ */
 
-

#include -#include

+#include <MySensor.h> +#include <SPI.h> -

#define SN “DimmableRGBLED”
-#define SV “1.0”
-#define CHILD_ID 1
-#define LED_PIN 5

+#define SN "DimmableRGBLED" +#define SV "1.0" +#define CHILD_ID 1 +#define LED_PIN 5 -

MySensor gw;

+MySensor gw; -

char rgb[7] = “ffffff”; // RGB value.
-int currentLevel = 0; // Current dimmer level.
-MyMessage dimmerMsg(CHILD_ID, V_PERCENTAGE);
-MyMessage lightMsg(CHILD_ID, V_STATUS);
-MyMessage rgbMsg(CHILD_ID, V_RGB);

+char rgb[7] = "ffffff"; // RGB value. +int currentLevel = 0; // Current dimmer level. +MyMessage dimmerMsg(CHILD_ID, V_PERCENTAGE); +MyMessage lightMsg(CHILD_ID, V_STATUS); +MyMessage rgbMsg(CHILD_ID, V_RGB); -

void setup()
-{
- gw.begin(incomingMessage);
- gw.sendSketchInfo(SN, SV);
- gw.present(CHILD_ID, S_RGB_LIGHT);
- // Send initial values.
- gw.send(lightMsg.set(currentLevel > 0 ? 1 : 0));
- gw.send(dimmerMsg.set(currentLevel));
- gw.send(rgbMsg.set(rgb));
-}

+void setup() +{ + gw.begin(incomingMessage); + gw.sendSketchInfo(SN, SV); + gw.present(CHILD_ID, S_RGB_LIGHT); + // Send initial values. + gw.send(lightMsg.set(currentLevel > 0 ? 1 : 0)); + gw.send(dimmerMsg.set(currentLevel)); + gw.send(rgbMsg.set(rgb)); +} -

void loop()
-{
- gw.process();
-}

+void loop() +{ + gw.process(); +} -

void incomingMessage(const MyMessage &message) {
- if (message.type == V_RGB) {
- // Retrieve the RGB value from the incoming message.
- // RGB LED not implemented, just a dummy print.
- String hexstring = message.getString();
- hexstring.toCharArray(rgb, sizeof(rgb));
- Serial.print(“Changing color to “);
- Serial.println(rgb);
- gw.send(rgbMsg.set(rgb));
- }

+void incomingMessage(const MyMessage &message) { + if (message.type == V_RGB) { + // Retrieve the RGB value from the incoming message. + // RGB LED not implemented, just a dummy print. + String hexstring = message.getString(); + hexstring.toCharArray(rgb, sizeof(rgb)); + Serial.print("Changing color to "); + Serial.println(rgb); + gw.send(rgbMsg.set(rgb)); + } -

if (message.type == V_STATUS || message.type == V_PERCENTAGE) {
- // Retrieve the light status or dimmer level from the incoming message.
- int requestedLevel = atoi(message.data);

+ if (message.type == V_STATUS || message.type == V_PERCENTAGE) { + // Retrieve the light status or dimmer level from the incoming message. + int requestedLevel = atoi(message.data); -
// Adjust incoming level if this is a V_LIGHT update [0 == off, 1 == on].
-requestedLevel *= (message.type == V_STATUS ? 100 : 1);
+    // Adjust incoming level if this is a V_LIGHT update [0 == off, 1 == on].
+    requestedLevel *= (message.type == V_STATUS ? 100 : 1);
 
-// Clip incoming level to valid range of 0 to 100
-requestedLevel = requestedLevel > 100 ? 100 : requestedLevel;
-requestedLevel = requestedLevel < 0   ? 0   : requestedLevel;
+    // Clip incoming level to valid range of 0 to 100
+    requestedLevel = requestedLevel > 100 ? 100 : requestedLevel;
+    requestedLevel = requestedLevel < 0   ? 0   : requestedLevel;
 
-// Change level value of LED pin.
-analogWrite(LED_PIN, (int)(requestedLevel / 100. * 255));
-currentLevel = requestedLevel;
+    // Change level value of LED pin.
+    analogWrite(LED_PIN, (int)(requestedLevel / 100. * 255));
+    currentLevel = requestedLevel;
 
-// Update the gateway with the current V_STATUS and V_PERCENTAGE.
-gw.send(lightMsg.set(currentLevel > 0 ? 1 : 0));
-gw.send(dimmerMsg.set(currentLevel));
-} } ```
-
+ // Update the gateway with the current V_STATUS and V_PERCENTAGE. + gw.send(lightMsg.set(currentLevel > 0 ? 1 : 0)); + gw.send(dimmerMsg.set(currentLevel)); + } +} +
+
+
diff --git a/components/sensor.mysensors/index.html b/components/sensor.mysensors/index.html index 8d3aa9165b..86d18b879f 100644 --- a/components/sensor.mysensors/index.html +++ b/components/sensor.mysensors/index.html @@ -249,51 +249,53 @@

Example sketch

-

```c++
-/**
- * Documentation: http://www.mysensors.org
- * Support Forum: http://forum.mysensors.org
- *
- * http://www.mysensors.org/build/light
- */

+
+
/**
+ * Documentation: http://www.mysensors.org
+ * Support Forum: http://forum.mysensors.org
+ *
+ * http://www.mysensors.org/build/light
+ */
 
-

#include -#include -#include -#include

+#include <SPI.h> +#include <MySensor.h> +#include <BH1750.h> +#include <Wire.h> -

#define SN “LightLuxSensor”
-#define SV “1.0”
-#define CHILD_ID 1
-unsigned long SLEEP_TIME = 30000; // Sleep time between reads (in milliseconds)

+#define SN "LightLuxSensor" +#define SV "1.0" +#define CHILD_ID 1 +unsigned long SLEEP_TIME = 30000; // Sleep time between reads (in milliseconds) -

BH1750 lightSensor;
-MySensor gw;
-MyMessage msg(CHILD_ID, V_LEVEL);
-MyMessage msgPrefix(CHILD_ID, V_UNIT_PREFIX); // Custom unit message.
-uint16_t lastlux = 0;

+BH1750 lightSensor; +MySensor gw; +MyMessage msg(CHILD_ID, V_LEVEL); +MyMessage msgPrefix(CHILD_ID, V_UNIT_PREFIX); // Custom unit message. +uint16_t lastlux = 0; -

void setup()
-{
- gw.begin();
- gw.sendSketchInfo(SN, SV);
- gw.present(CHILD_ID, S_LIGHT_LEVEL);
- lightSensor.begin();
- gw.send(msg.set(lastlux));
- gw.send(msgPrefix.set(“lux”)); // Set custom unit.
-}

+void setup() +{ + gw.begin(); + gw.sendSketchInfo(SN, SV); + gw.present(CHILD_ID, S_LIGHT_LEVEL); + lightSensor.begin(); + gw.send(msg.set(lastlux)); + gw.send(msgPrefix.set("lux")); // Set custom unit. +} -

void loop()
-{
- uint16_t lux = lightSensor.readLightLevel(); // Get Lux value
- if (lux != lastlux) {
- gw.send(msg.set(lux));
- lastlux = lux;
- }

+void loop() +{ + uint16_t lux = lightSensor.readLightLevel(); // Get Lux value + if (lux != lastlux) { + gw.send(msg.set(lux)); + lastlux = lux; + } -

gw.sleep(SLEEP_TIME);
-}
-```

+ gw.sleep(SLEEP_TIME); +} +
+
+
diff --git a/components/switch.mysensors/index.html b/components/switch.mysensors/index.html index 0194e0e817..2a046c8e76 100644 --- a/components/switch.mysensors/index.html +++ b/components/switch.mysensors/index.html @@ -195,48 +195,50 @@

Example sketch

-

```c++
-/*
- * Documentation: http://www.mysensors.org
- * Support Forum: http://forum.mysensors.org
- *
- * http://www.mysensors.org/build/relay
- */

+
+
/*
+ * Documentation: http://www.mysensors.org
+ * Support Forum: http://forum.mysensors.org
+ *
+ * http://www.mysensors.org/build/relay
+ */
 
-

#include -#include

+#include <MySensor.h> +#include <SPI.h> -

#define SN “Relay”
-#define SV “1.0”
-#define CHILD_ID 1
-#define RELAY_PIN 3

+#define SN "Relay" +#define SV "1.0" +#define CHILD_ID 1 +#define RELAY_PIN 3 -

MySensor gw;
-MyMessage msgRelay(CHILD_ID, V_STATUS);

+MySensor gw; +MyMessage msgRelay(CHILD_ID, V_STATUS); -

void setup()
-{
- gw.begin(incomingMessage);
- gw.sendSketchInfo(SN, SV);
- // Initialize the digital pin as an output.
- pinMode(RELAY_PIN, OUTPUT);
- gw.present(CHILD_ID, S_BINARY);
- gw.send(msgRelay.set(0));
-}

+void setup() +{ + gw.begin(incomingMessage); + gw.sendSketchInfo(SN, SV); + // Initialize the digital pin as an output. + pinMode(RELAY_PIN, OUTPUT); + gw.present(CHILD_ID, S_BINARY); + gw.send(msgRelay.set(0)); +} -

void loop()
-{
- gw.process();
-}

+void loop() +{ + gw.process(); +} -

void incomingMessage(const MyMessage &message)
-{
- if (message.type == V_STATUS) {
- // Change relay state.
- digitalWrite(RELAY_PIN, message.getBool() ? 1 : 0);
- }
-}
-```

+void incomingMessage(const MyMessage &message) +{ + if (message.type == V_STATUS) { + // Change relay state. + digitalWrite(RELAY_PIN, message.getBool() ? 1 : 0); + } +} +
+
+
diff --git a/sitemap.xml b/sitemap.xml index aaa11f51ac..9b7e1b94a9 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -1374,630 +1374,630 @@ https://home-assistant.io/components/alarm_control_panel.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/alarm_control_panel.manual.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/alarm_control_panel.mqtt.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/arduino.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/automation.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/browser.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/camera.foscam.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/camera.generic.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/configurator.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/conversation.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/device_sun_light_trigger.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/device_tracker.actiontec.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/device_tracker.aruba.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/device_tracker.asuswrt.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/device_tracker.ddwrt.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/device_tracker.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/device_tracker.locative.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/device_tracker.luci.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/device_tracker.mqtt.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/device_tracker.netgear.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/device_tracker.nmap_scanner.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/device_tracker.owntracks.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/device_tracker.snmp.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/device_tracker.thomson.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/device_tracker.tomato.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/device_tracker.tplink.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/device_tracker.ubus.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/discovery.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/downloader.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/ecobee.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/group.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/history.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/ifttt.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/ifttt.manything.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/introduction.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/isy994.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/keyboard.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/light.blinksticklight.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/light.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/light.hue.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/light.hyperion.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/light.limitlessled.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/light.rfxtrx.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/light.tellstick.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/light.vera.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/light.wink.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/lock.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/lock.wink.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/logbook.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/media_player.cast.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/media_player.denon.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/media_player.firetv.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/media_player.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/media_player.itunes.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/media_player.kodi.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/media_player.mpd.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/media_player.plex.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/media_player.sonos.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/media_player.squeezebox.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/modbus.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/mqtt.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/notify.file.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/notify.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/notify.instapush.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/notify.nma.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/notify.pushbullet.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/notify.pushover.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/notify.slack.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/notify.smtp.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/notify.syslog.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/notify.telegram.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/notify.xmpp.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/rfxtrx.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/scene.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/script.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.arduino.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.arest.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.bitcoin.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.command_sensor.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.cpuspeed.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.dht.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.ecobee.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.efergy.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.forecast.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.glances.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.modbus.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.mqtt.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.mysensors.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.openweathermap.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.rest.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.rfxtrx.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.rpi_gpio.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.sabnzbd.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.speedtest.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.swiss_public_transport.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.systemmonitor.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.tellstick.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.temper.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.time_date.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.transmission.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.vera.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.wink.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sensor.worldclock.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/shell_command.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/simple_alarm.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/sun.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/switch.arduino.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/switch.arest.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/switch.command_switch.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/switch.edimax.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/switch.hikvision.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/switch.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/switch.modbus.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/switch.mqtt.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/switch.pulseaudio_loopback.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/switch.rest.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/switch.rfxtrx.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/switch.rpi_gpio.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/switch.tellstick.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/switch.transmission.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/switch.vera.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/switch.wemo.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/switch.wink.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/tellstick.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/thermostat.ecobee.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/thermostat.heat_control.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/thermostat.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/thermostat.nest.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/thermostat.radiotherm.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/vera.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/verisure.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/wink.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/zone.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/components/zwave.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/demo/frontend.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/demo/index.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/developers/add_new_platform.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/developers/api.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/developers/architecture.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/developers/creating_components.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/developers/credits.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/developers/frontend.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/developers/python_api.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/developers/rest_api.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/developers/website.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/getting-started/android.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/getting-started/automation.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/getting-started/autostart.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/getting-started/configuration.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/getting-started/devices.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/getting-started/presence-detection.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/getting-started/templating.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/getting-started/troubleshooting-configuration.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/getting-started/troubleshooting.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/googlef4f3693c209fe788.html - 2016-04-14T15:49:05+00:00 + 2016-04-14T16:43:15+00:00 https://home-assistant.io/static/mdi-demo.html - 2016-04-14T15:49:06+00:00 + 2016-04-14T16:43:15+00:00