From 32fbab7f30c9f0955294bf206011195c241120c5 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Mon, 20 Jun 2016 04:19:00 +0000 Subject: [PATCH] Site updated at 2016-06-20 04:19:00 UTC --- atom.xml | 24 ++++++++++++++++++- .../index.html | 19 +++++++++++---- .../index.html | 22 +++++++++++++++++ blog/categories/community/atom.xml | 2 +- blog/categories/device-tracking/atom.xml | 2 +- blog/categories/esp8266/atom.xml | 21 +++++++++++----- blog/categories/how-to/atom.xml | 2 +- blog/categories/ibeacons/atom.xml | 2 +- blog/categories/internet-of-things/atom.xml | 2 +- blog/categories/mqtt/atom.xml | 21 +++++++++++----- blog/categories/organisation/atom.xml | 2 +- blog/categories/owntracks/atom.xml | 2 +- blog/categories/presence-detection/atom.xml | 2 +- .../public-service-announcement/atom.xml | 2 +- blog/categories/release-notes/atom.xml | 24 ++++++++++++++++++- blog/categories/survey/atom.xml | 2 +- blog/categories/talks/atom.xml | 2 +- blog/categories/technology/atom.xml | 2 +- blog/categories/user-stories/atom.xml | 2 +- blog/categories/video/atom.xml | 2 +- blog/categories/website/atom.xml | 2 +- blog/index.html | 22 +++++++++++++++++ index.html | 4 ++-- sitemap.xml | 12 +++++----- 24 files changed, 157 insertions(+), 42 deletions(-) diff --git a/atom.xml b/atom.xml index 43db407f31..cfdac3c9f6 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Home Assistant]]> - 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

    + + + +
    +
    netatmo:
    +    api_key: API_KEY
    +    secret_key: SECRET_KEY
    +    username: username
    +    password: password
    +
    +
    +
    + +

    Hotfix 0.22.1 - June 20

    + + + ]]> diff --git a/blog/2015/10/11/measure-temperature-with-esp8266-and-report-to-mqtt/index.html b/blog/2015/10/11/measure-temperature-with-esp8266-and-report-to-mqtt/index.html index 114a16489b..768173f0cc 100644 --- a/blog/2015/10/11/measure-temperature-with-esp8266-and-report-to-mqtt/index.html +++ b/blog/2015/10/11/measure-temperature-with-esp8266-and-report-to-mqtt/index.html @@ -141,9 +141,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:

    + +

    Connections

    @@ -315,6 +320,8 @@ Adafruit has stopped selling the HDC1008. One possible replacement is the 107 108 109 +110 +111
    #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 @@
       
  • Sensor: SNMP is now supported (@fabaff)
  • 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

    + +
      +
    • Insteon Hub lights will load again
    • +
    diff --git a/blog/categories/community/atom.xml b/blog/categories/community/atom.xml index 3d471b7403..7c6952fe0a 100644 --- a/blog/categories/community/atom.xml +++ b/blog/categories/community/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Community | Home Assistant]]> - 2016-06-19T22:07:22+00:00 + 2016-06-20T04:18:24+00:00 https://home-assistant.io/ diff --git a/blog/categories/device-tracking/atom.xml b/blog/categories/device-tracking/atom.xml index d2e94fad24..afb5cd8035 100644 --- a/blog/categories/device-tracking/atom.xml +++ b/blog/categories/device-tracking/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Device-Tracking | Home Assistant]]> - 2016-06-19T22:07:22+00:00 + 2016-06-20T04:18:24+00:00 https://home-assistant.io/ diff --git a/blog/categories/esp8266/atom.xml b/blog/categories/esp8266/atom.xml index 197ab2e8c7..85f39767b0 100644 --- a/blog/categories/esp8266/atom.xml +++ b/blog/categories/esp8266/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: ESP8266 | Home Assistant]]> - 2016-06-19T22:07:22+00:00 + 2016-06-20T04:18:24+00:00 https://home-assistant.io/ @@ -47,9 +47,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:

    + +

    Connections

    @@ -221,6 +226,8 @@ Adafruit has stopped selling the HDC1008. One possible replacement is the 107 108 109 +110 +111
    #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 @@
       <![CDATA[Category: How-To | Home Assistant]]>
       
       
    -  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 @@
       <![CDATA[Category: iBeacons | Home Assistant]]>
       
       
    -  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 @@
       <![CDATA[Category: Internet-of-Things | Home Assistant]]>
       
       
    -  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 @@
       <![CDATA[Category: MQTT | Home Assistant]]>
       
       
    -  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:

    + +

    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 @@
       <![CDATA[Category: Organisation | Home Assistant]]>
       
       
    -  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 @@
       <![CDATA[Category: OwnTracks | Home Assistant]]>
       
       
    -  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 @@
       <![CDATA[Category: Presence-Detection | Home Assistant]]>
       
       
    -  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 @@
       <![CDATA[Category: Public-Service-Announcement | Home Assistant]]>
       
       
    -  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 @@
       <![CDATA[Category: Release-Notes | Home Assistant]]>
       
       
    -  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

    + +
      +
    • Insteon Hub lights will load again
    • +
    + ]]> 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 @@ <![CDATA[Category: Survey | Home Assistant]]> - 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 @@ <![CDATA[Category: Talks | Home Assistant]]> - 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 @@ <![CDATA[Category: Technology | Home Assistant]]> - 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 @@ <![CDATA[Category: User-Stories | Home Assistant]]> - 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 @@ <![CDATA[Category: Video | Home Assistant]]> - 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 @@ <![CDATA[Category: Website | Home Assistant]]> - 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

    + +
      +
    • Insteon Hub lights will load again
    • +
    + 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
    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