diff --git a/atom.xml b/atom.xml index 43db407f31..cfdac3c9f6 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@
netatmo: + api_key: API_KEY + secret_key: SECRET_KEY + username: username + password: password +
Besides this, you will need the usual hardware prototype equipment: a breadboard, some wires, soldering iron + wire, Serial USB cable.
--Adafruit has stopped selling the HDC1008. One possible replacement is the BME280. Adjusted sketch to work with the BME280 can be found here. -
+Since this article has been published the HDC1008 has been discontinued. Updated sketches are available for the following alternatives:
+ +#include <ESP8266WiFi.h> #include <Wire.h> @@ -347,7 +354,8 @@ Adafruit_HDC1000 hdc = Adafruit_HDC1000(); if (!hdc.begin()) { Serial.println("Couldn't find sensor!"); while (1); - }} + } +} void setup_wifi() { delay(10); @@ -389,7 +397,8 @@ Adafruit_HDC1000 hdc = Adafruit_HDC1000(); } bool checkBound(float newValue, float prevValue, float maxDiff) { - return newValue < prevValue - maxDiff || newValue > prevValue + maxDiff; + return !isnan(newValue) && + (newValue < prevValue - maxDiff || newValue > prevValue + maxDiff); } long lastMsg = 0; diff --git a/blog/2016/06/18/pandora-bt-home-hub-5-and-local-file-camera/index.html b/blog/2016/06/18/pandora-bt-home-hub-5-and-local-file-camera/index.html index d80378d766..ddaaea3ce2 100644 --- a/blog/2016/06/18/pandora-bt-home-hub-5-and-local-file-camera/index.html +++ b/blog/2016/06/18/pandora-bt-home-hub-5-and-local-file-camera/index.html @@ -142,6 +142,28 @@
netatmo: + api_key: API_KEY + secret_key: SECRET_KEY + username: username + password: password +
Besides this, you will need the usual hardware prototype equipment: a breadboard, some wires, soldering iron + wire, Serial USB cable.
--Adafruit has stopped selling the HDC1008. One possible replacement is the BME280. Adjusted sketch to work with the BME280 can be found here. -
+Since this article has been published the HDC1008 has been discontinued. Updated sketches are available for the following alternatives:
+ +#include <ESP8266WiFi.h> #include <Wire.h> @@ -253,7 +260,8 @@ Adafruit_HDC1000 hdc = Adafruit_HDC1000(); if (!hdc.begin()) { Serial.println("Couldn't find sensor!"); while (1); - }} + } +} void setup_wifi() { delay(10); @@ -295,7 +303,8 @@ Adafruit_HDC1000 hdc = Adafruit_HDC1000(); } bool checkBound(float newValue, float prevValue, float maxDiff) { - return newValue < prevValue - maxDiff || newValue > prevValue + maxDiff; + return !isnan(newValue) && + (newValue < prevValue - maxDiff || newValue > prevValue + maxDiff); } long lastMsg = 0; diff --git a/blog/categories/how-to/atom.xml b/blog/categories/how-to/atom.xml index 84a1da8f76..330b172833 100644 --- a/blog/categories/how-to/atom.xml +++ b/blog/categories/how-to/atom.xml @@ -4,7 +4,7 @@- 2016-06-19T22:07:22+00:00 +2016-06-20T04:18:24+00:00 https://home-assistant.io/ diff --git a/blog/categories/ibeacons/atom.xml b/blog/categories/ibeacons/atom.xml index cb39b7c76c..db7ba81875 100644 --- a/blog/categories/ibeacons/atom.xml +++ b/blog/categories/ibeacons/atom.xml @@ -4,7 +4,7 @@ - 2016-06-19T22:07:22+00:00 +2016-06-20T04:18:24+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 37b1424251..cf27d5a1dc 100644 --- a/blog/categories/internet-of-things/atom.xml +++ b/blog/categories/internet-of-things/atom.xml @@ -4,7 +4,7 @@ - 2016-06-19T22:07:22+00:00 +2016-06-20T04:18:24+00:00 https://home-assistant.io/ diff --git a/blog/categories/mqtt/atom.xml b/blog/categories/mqtt/atom.xml index 0c13c850a0..1f27d0117a 100644 --- a/blog/categories/mqtt/atom.xml +++ b/blog/categories/mqtt/atom.xml @@ -4,7 +4,7 @@ - 2016-06-19T22:07:22+00:00 +2016-06-20T04:18:24+00:00 https://home-assistant.io/ @@ -281,9 +281,14 @@ Home Assistant will keep track of historical values and allow you to integrate i Besides this, you will need the usual hardware prototype equipment: a breadboard, some wires, soldering iron + wire, Serial USB cable.
--Adafruit has stopped selling the HDC1008. One possible replacement is the BME280. Adjusted sketch to work with the BME280 can be found here. -
+Alternatives
+ +Since this article has been published the HDC1008 has been discontinued. Updated sketches are available for the following alternatives:
+ ++
- DHT22 sensor and updated sketch.
+- BME280 sensor and updated sketch.
+Connections
@@ -455,6 +460,8 @@ Adafruit has stopped selling the HDC1008. One possible replacement is the 107 108 109 +110 +111
#include <ESP8266WiFi.h> #include <Wire.h> @@ -487,7 +494,8 @@ Adafruit_HDC1000 hdc = Adafruit_HDC1000(); if (!hdc.begin()) { Serial.println("Couldn't find sensor!"); while (1); - }} + } +} void setup_wifi() { delay(10); @@ -529,7 +537,8 @@ Adafruit_HDC1000 hdc = Adafruit_HDC1000(); } bool checkBound(float newValue, float prevValue, float maxDiff) { - return newValue < prevValue - maxDiff || newValue > prevValue + maxDiff; + return !isnan(newValue) && + (newValue < prevValue - maxDiff || newValue > prevValue + maxDiff); } long lastMsg = 0; diff --git a/blog/categories/organisation/atom.xml b/blog/categories/organisation/atom.xml index b5b5a2fdcb..4c4094a9c9 100644 --- a/blog/categories/organisation/atom.xml +++ b/blog/categories/organisation/atom.xml @@ -4,7 +4,7 @@- 2016-06-19T22:07:22+00:00 +2016-06-20T04:18:24+00:00 https://home-assistant.io/ diff --git a/blog/categories/owntracks/atom.xml b/blog/categories/owntracks/atom.xml index 37e16b3039..105635e690 100644 --- a/blog/categories/owntracks/atom.xml +++ b/blog/categories/owntracks/atom.xml @@ -4,7 +4,7 @@ - 2016-06-19T22:07:22+00:00 +2016-06-20T04:18:24+00:00 https://home-assistant.io/ diff --git a/blog/categories/presence-detection/atom.xml b/blog/categories/presence-detection/atom.xml index b4f1d31df5..e702ba3f99 100644 --- a/blog/categories/presence-detection/atom.xml +++ b/blog/categories/presence-detection/atom.xml @@ -4,7 +4,7 @@ - 2016-06-19T22:07:22+00:00 +2016-06-20T04:18:24+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 641b2233c1..a17581fb62 100644 --- a/blog/categories/public-service-announcement/atom.xml +++ b/blog/categories/public-service-announcement/atom.xml @@ -4,7 +4,7 @@ - 2016-06-19T22:07:22+00:00 +2016-06-20T04:18:24+00:00 https://home-assistant.io/ diff --git a/blog/categories/release-notes/atom.xml b/blog/categories/release-notes/atom.xml index 431def2ab3..eaf66fd7ae 100644 --- a/blog/categories/release-notes/atom.xml +++ b/blog/categories/release-notes/atom.xml @@ -4,7 +4,7 @@ - 2016-06-19T22:07:22+00:00 +2016-06-20T04:18:24+00:00 https://home-assistant.io/ @@ -53,6 +53,28 @@ Sensor: Support for Swiss hydrological data (@fabaff) +Breaking change
+ ++
+ +- The new Netatmo support caused us to change how Netatmo are configured. It’s now done via it’s own component.
++ ++++netatmo: + api_key: API_KEY + secret_key: SECRET_KEY + username: username + password: password +Hotfix 0.22.1 - June 20
+ ++
+ ]]> diff --git a/blog/categories/survey/atom.xml b/blog/categories/survey/atom.xml index 34bda5c890..fe60e3c441 100644 --- a/blog/categories/survey/atom.xml +++ b/blog/categories/survey/atom.xml @@ -4,7 +4,7 @@- Insteon Hub lights will load again
+- 2016-06-19T22:07:22+00:00 +2016-06-20T04:18:24+00:00 https://home-assistant.io/ diff --git a/blog/categories/talks/atom.xml b/blog/categories/talks/atom.xml index ee5bf9faa8..c714bc9f15 100644 --- a/blog/categories/talks/atom.xml +++ b/blog/categories/talks/atom.xml @@ -4,7 +4,7 @@ - 2016-06-19T22:07:22+00:00 +2016-06-20T04:18:24+00:00 https://home-assistant.io/ diff --git a/blog/categories/technology/atom.xml b/blog/categories/technology/atom.xml index 30e9c165fe..564decaca9 100644 --- a/blog/categories/technology/atom.xml +++ b/blog/categories/technology/atom.xml @@ -4,7 +4,7 @@ - 2016-06-19T22:07:22+00:00 +2016-06-20T04:18:24+00:00 https://home-assistant.io/ diff --git a/blog/categories/user-stories/atom.xml b/blog/categories/user-stories/atom.xml index ec3781396a..178ab5914d 100644 --- a/blog/categories/user-stories/atom.xml +++ b/blog/categories/user-stories/atom.xml @@ -4,7 +4,7 @@ - 2016-06-19T22:07:22+00:00 +2016-06-20T04:18:24+00:00 https://home-assistant.io/ diff --git a/blog/categories/video/atom.xml b/blog/categories/video/atom.xml index 5880650630..39dbde13a1 100644 --- a/blog/categories/video/atom.xml +++ b/blog/categories/video/atom.xml @@ -4,7 +4,7 @@ - 2016-06-19T22:07:22+00:00 +2016-06-20T04:18:24+00:00 https://home-assistant.io/ diff --git a/blog/categories/website/atom.xml b/blog/categories/website/atom.xml index 054be88c28..33a60593a6 100644 --- a/blog/categories/website/atom.xml +++ b/blog/categories/website/atom.xml @@ -4,7 +4,7 @@ - 2016-06-19T22:07:22+00:00 +2016-06-20T04:18:24+00:00 https://home-assistant.io/ diff --git a/blog/index.html b/blog/index.html index a094736467..0bbdd5d073 100644 --- a/blog/index.html +++ b/blog/index.html @@ -147,6 +147,28 @@ Sensor: Support for Swiss hydrological data (@fabaff) +Breaking change
+ ++
+ +- The new Netatmo support caused us to change how Netatmo are configured. It’s now done via it’s own component.
++ ++++netatmo: + api_key: API_KEY + secret_key: SECRET_KEY + username: username + password: password +Hotfix 0.22.1 - June 20
+ ++
+ diff --git a/index.html b/index.html index 3745a8854d..b11429d4f3 100644 --- a/index.html +++ b/index.html @@ -115,8 +115,8 @@ Home Assistant is an open-source home automation platform running on Python 3. T- Insteon Hub lights will load again
+diff --git a/sitemap.xml b/sitemap.xml index c404434e09..7e68426c02 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -1797,26 +1797,26 @@https://home-assistant.io/demo/frontend.html -2016-06-19T22:06:28+00:00 +2016-06-20T04:17:48+00:00 https://home-assistant.io/demo/index.html -2016-06-19T22:06:28+00:00 +2016-06-20T04:17:48+00:00 https://home-assistant.io/googlef4f3693c209fe788.html -2016-06-19T22:06:28+00:00 +2016-06-20T04:17:48+00:00 https://home-assistant.io/static/fonts/roboto/DESCRIPTION.en_us.html -2016-06-19T22:06:28+00:00 +2016-06-20T04:17:49+00:00 https://home-assistant.io/static/fonts/robotomono/DESCRIPTION.en_us.html -2016-06-19T22:06:28+00:00 +2016-06-20T04:17:49+00:00 https://home-assistant.io/static/mdi-demo.html -2016-06-19T22:06:28+00:00 +2016-06-20T04:17:49+00:00