diff --git a/components/binary_sensor.mysensors/index.html b/components/binary_sensor.mysensors/index.html
index 2dca90d7d9..b18dcfc6ca 100644
--- a/components/binary_sensor.mysensors/index.html
+++ b/components/binary_sensor.mysensors/index.html
@@ -177,6 +177,53 @@
For more information, visit the serial api of MySensors.
+ Example sketch
+
+```c++
+/**
+ * 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.
+
+MySensor gw;
+Bounce debouncer = Bounce();
+MyMessage msg(CHILD_ID, V_TRIPPED);
+
+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 c58cea3915..e675459ff0 100644
--- a/components/light.mysensors/index.html
+++ b/components/light.mysensors/index.html
@@ -159,6 +159,80 @@
For more information, visit the serial api of MySensors.
+ Example sketch
+
+```c++
+/*
+ * Documentation: http://www.mysensors.org
+ * Support Forum: http://forum.mysensors.org
+ *
+ * http://www.mysensors.org/build/dimmer
+ */
+
+#include
+#include
+
+#define SN “DimmableRGBLED”
+#define SV “1.0”
+#define CHILD_ID 1
+#define LED_PIN 5
+
+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);
+
+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 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);
+
+// 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;
+
+// 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));
+} } ```
+
+
diff --git a/components/mysensors/index.html b/components/mysensors/index.html
index 70532a2954..e5f5de0e94 100644
--- a/components/mysensors/index.html
+++ b/components/mysensors/index.html
@@ -132,7 +132,7 @@
debug: true
persistence: true
version: '1.5'
- optimistic: 'true'
+ optimistic: false
diff --git a/components/sensor.mysensors/index.html b/components/sensor.mysensors/index.html
index 511a3f739d..8d3aa9165b 100644
--- a/components/sensor.mysensors/index.html
+++ b/components/sensor.mysensors/index.html
@@ -247,6 +247,54 @@
For more information, visit the serial api of MySensors.
+ Example sketch
+
+```c++
+/**
+ * Documentation: http://www.mysensors.org
+ * Support Forum: http://forum.mysensors.org
+ *
+ * http://www.mysensors.org/build/light
+ */
+
+#include
+#include
+#include
+#include
+
+#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;
+
+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;
+ }
+
+gw.sleep(SLEEP_TIME);
+}
+```
+
diff --git a/components/switch.mysensors/index.html b/components/switch.mysensors/index.html
index 1f315c2acd..0194e0e817 100644
--- a/components/switch.mysensors/index.html
+++ b/components/switch.mysensors/index.html
@@ -193,6 +193,51 @@
For more information, visit the serial api of MySensors.
+ Example sketch
+
+```c++
+/*
+ * Documentation: http://www.mysensors.org
+ * Support Forum: http://forum.mysensors.org
+ *
+ * http://www.mysensors.org/build/relay
+ */
+
+#include
+#include
+
+#define SN “Relay”
+#define SV “1.0”
+#define CHILD_ID 1
+#define RELAY_PIN 3
+
+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 loop()
+{
+ gw.process();
+}
+
+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 3dfc09387f..aaa11f51ac 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -1006,9 +1006,6 @@
https://home-assistant.io/components/switch.verisure/
-
- https://home-assistant.io/components/mysensors/
-
https://home-assistant.io/components/binary_sensor.nx584/
@@ -1060,24 +1057,12 @@
https://home-assistant.io/components/zwave/
-
- https://home-assistant.io/components/binary_sensor.mysensors/
-
-
- https://home-assistant.io/components/sensor.mysensors/
-
https://home-assistant.io/components/lock.mqtt/
https://home-assistant.io/components/discoverable/
-
- https://home-assistant.io/components/light.mysensors/
-
-
- https://home-assistant.io/components/switch.mysensors/
-
https://home-assistant.io/components/scene.hunterdouglas_powerview/
@@ -1126,6 +1111,21 @@
https://home-assistant.io/components/sensor.nzbget/
+
+ https://home-assistant.io/components/binary_sensor.mysensors/
+
+
+ https://home-assistant.io/components/light.mysensors/
+
+
+ https://home-assistant.io/components/mysensors/
+
+
+ https://home-assistant.io/components/sensor.mysensors/
+
+
+ https://home-assistant.io/components/switch.mysensors/
+
https://home-assistant.io/cookbook/automation_for_rainy_days/
@@ -1374,630 +1374,630 @@
https://home-assistant.io/components/alarm_control_panel.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/alarm_control_panel.manual.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/alarm_control_panel.mqtt.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/arduino.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/automation.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/browser.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/camera.foscam.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/camera.generic.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/configurator.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/conversation.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/device_sun_light_trigger.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/device_tracker.actiontec.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/device_tracker.aruba.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/device_tracker.asuswrt.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/device_tracker.ddwrt.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/device_tracker.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/device_tracker.locative.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/device_tracker.luci.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/device_tracker.mqtt.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/device_tracker.netgear.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/device_tracker.nmap_scanner.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/device_tracker.owntracks.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/device_tracker.snmp.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/device_tracker.thomson.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/device_tracker.tomato.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/device_tracker.tplink.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/device_tracker.ubus.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/discovery.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/downloader.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/ecobee.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/group.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/history.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/ifttt.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/ifttt.manything.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/introduction.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/isy994.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/keyboard.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/light.blinksticklight.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/light.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/light.hue.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/light.hyperion.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/light.limitlessled.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/light.rfxtrx.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/light.tellstick.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/light.vera.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/light.wink.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/lock.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/lock.wink.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/logbook.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/media_player.cast.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/media_player.denon.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/media_player.firetv.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/media_player.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/media_player.itunes.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/media_player.kodi.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/media_player.mpd.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/media_player.plex.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/media_player.sonos.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/media_player.squeezebox.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/modbus.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/mqtt.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/notify.file.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/notify.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/notify.instapush.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/notify.nma.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/notify.pushbullet.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/notify.pushover.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/notify.slack.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/notify.smtp.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/notify.syslog.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/notify.telegram.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/notify.xmpp.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/rfxtrx.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/scene.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/script.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.arduino.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.arest.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.bitcoin.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.command_sensor.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.cpuspeed.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.dht.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.ecobee.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.efergy.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.forecast.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.glances.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.modbus.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.mqtt.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.mysensors.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.openweathermap.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.rest.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.rfxtrx.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.rpi_gpio.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.sabnzbd.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.speedtest.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.swiss_public_transport.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.systemmonitor.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.tellstick.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.temper.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.time_date.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.transmission.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.vera.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.wink.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sensor.worldclock.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/shell_command.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/simple_alarm.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/sun.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/switch.arduino.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/switch.arest.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/switch.command_switch.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/switch.edimax.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/switch.hikvision.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/switch.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/switch.modbus.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/switch.mqtt.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/switch.pulseaudio_loopback.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/switch.rest.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/switch.rfxtrx.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/switch.rpi_gpio.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/switch.tellstick.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/switch.transmission.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/switch.vera.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/switch.wemo.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/switch.wink.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/tellstick.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/thermostat.ecobee.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/thermostat.heat_control.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/thermostat.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/thermostat.nest.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/thermostat.radiotherm.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/vera.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/verisure.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/wink.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/zone.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/components/zwave.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/demo/frontend.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/demo/index.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/developers/add_new_platform.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/developers/api.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/developers/architecture.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/developers/creating_components.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/developers/credits.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/developers/frontend.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/developers/python_api.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/developers/rest_api.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/developers/website.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/getting-started/android.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/getting-started/automation.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/getting-started/autostart.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/getting-started/configuration.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/getting-started/devices.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/getting-started/presence-detection.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/getting-started/templating.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/getting-started/troubleshooting-configuration.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/getting-started/troubleshooting.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/googlef4f3693c209fe788.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:05+00:00
https://home-assistant.io/static/mdi-demo.html
- 2016-04-13T14:46:41+00:00
+ 2016-04-14T15:49:06+00:00