diff --git a/atom.xml b/atom.xml index f04dacaa49..adbaf77a4c 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Home Assistant]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ @@ -13,6 +13,284 @@ Octopress + + <![CDATA[0.65: Rename entities, new filter sensor, UpCloud and Channels]]> + + 2018-03-09T00:01:00+00:00 + https://home-assistant.io/blog/2018/03/09/release-65 +

+ +

Release 0.65 has arrived and oh boy, is it awesome. First off, in case you have missed the previous release notes and announcements: Starting with this release, Home Assistant has dropped support for Python 3.4. The minimum supported version is now Python 3.5.3. If you are on Hass.io or Docker, you’ll automatically be running the latest and greatest. If you’re on an older Hassbian installation or did your own Linux setup you’ll need to upgrade to at least Python 3.5.3.

+ +

Naming entities

+ +

With the introduction of the entity registry in 0.63, Home Assistant is making sure that the same devices always receive the same entity IDs. This release is taking it a step further by allowing users to change the name of a device from the frontend. Changing the name will be instantly applied and overrides whatever name the device is given by the integration. If you want to switch back to the name from the integration, set the name to blank.

+ +

This feature is, just like the entity registry, only available for integrations that provide unique IDs for their entities. Adding this to each integration is still a work in progress.

+ +

+ Screencap of interaction with the UI to override the name of a light. + The new entity registry settings page in action. +

+ +

Filter sensor

+ +

The filter sensor is a new 2nd order sensor by @dgomes: it will consume data from a sensor entity and apply filters to it. For the initial implementation it comes with Low-pass, Outlier and Throttle filters. Expect more to be added in the future.

+ +
sensor:
+  - platform: filter
+    name: "filtered realistic humidity"
+    entity_id: sensor.realistic_humidity
+    filters:
+      - filter: outlier
+        window_size: 4
+        radius: 4.0
+      - filter: lowpass
+        time_constant: 10
+        precision: 2
+
+
+ +

+ Chart showing a humidity sensor with a lot of spikes and a smooth graph produced by the new filter sensor. + Graph showing both the input sensor and the output of the filter sensor. +

+ +

Light Group

+ +

We have had some discussion lately and realized that our current group component is very limiting. Extending it would probably lead to more confusion so we’ve decided to take a new approach: groups that are designed to be part of a specific component. The first one in this series comes at the hand of @OttoWinter: the group light (docs).

+ +

The group light creates a single light inside Home Assistant that is representing a group of lights. All commands will be forwarded and the state is a combination of all the lights.

+ +
light:
+  - platform: group
+    name: Cool Light Group
+    entities:
+      - light.amazing_light
+      - light.foobar
+      - light.sun
+
+
+ +

HomeKit

+ +

HomeKit got some more upgrades. We’ve added support for temperature sensors in Fahrenheit, alarm systems, switches and thermostats. Just a few releases more and we should be able to cover it all.

+ +

Optional words for the Conversation component

+ +

The conversation component has always been a great introduction to controlling your house by voice. There is no hotword detection or powerful language engine behind it, but it gives a great intro to what is possible. Starting with this release, it will get a little bit more powerful with the introduction of optional words. To mark a word optional, wrap it in square brackets: Change the light to [the color] {color}.

+ +
# Example configuration.yaml entry
+conversation:
+  intents:
+    LivingRoomTemperature:
+     - What is the temperature in the living room
+     - What is [the] living room temperature
+
+intent_script:
+  LivingRoomTemperature:
+    speech:
+      text: It is currently  degrees in the living room.
+
+
+ +

+ Screenshot of the frontend with the conversation panel open. + Have conversations with Home Assistant via the conversation component. +

+ +

New Platforms

+ + + +

If you need help…

+ +

…don’t hesitate to use our very active forums or join us for a little chat. The release notes have comments enabled but it’s preferred if you use the former communication channels. Thanks.

+ +

Reporting Issues

+ +

Experiencing issues introduced by this release? Please report them in our issue tracker. Make sure to fill in all fields of the issue template.

+ + +

Breaking Changes

+ + + +

All changes

+ + + +]]>
+
+ <![CDATA[0.64: Over 1000 integrations! New: HomeKit, BMW, August.]]> @@ -2920,110 +3198,6 @@ Demo is running... -> CTRL + C to shutdown

Some users share their slides and other documents in our assets repository. Also, take a look at that repository if you need a logo for your slides.

-]]> -
- - - <![CDATA[Serial analog sensor]]> - - 2017-10-23T06:00:00+00:00 - https://home-assistant.io/blog/2017/10/23/simple-analog-sensor - This blog post is about building a super simple analog sensor for Home Assistant. The physical sensor will send the data over its virtual serial port as it will be connected over USB. The concept is similar to the TEMPer USB devices. The attatched sensor type to the microcontroller can be any kind of sensor which gives you an analog signal from brightness over soil moisture to temperature.

- -

The microcontroller will only transfer the voltage of an analog input pin which will be between 0 and 1024. Home Assistant will use the new serial sensor platform to read the data and perform actions to convert the raw reading into a real measurement. This means that you don’t have to adjust the code of your microcontroller if you change the attached sensor type.

- -

- - The assembled sensor -

- - - -

All parts needed in this how-to can be bought for less than 2 Euro or 2 USD from China. I’m going to use the following items which were already available in my craft crate:

- -
    -
  • Digispark USB Development Board
  • -
  • Temperature sensor TMP36 (or any other sensor that gives you an analog signal)
  • -
  • Cables (if you don’t want to connect the sensor directly to the board)
  • -
- -

The cabling is easy.

- - - - - - - - - - - - - - - - - - - - - - -
SensorDigispark
GNDGND
VCC5V
VOUTP4
- -

There are other boards with the same size available. Like those with the far more powerful Mega32U4 chip. However, it would work with boards from the Arduino family as well if you adjust the code provided below.

- -

The sketch is pretty simple. We are going to send the readings to a virtual serial output every 5 seconds. No logic needed. A little plus is that the onboard LED is blinking as an indicator that the board is working. Upload the code to your Digispark board. Keep in mind that the upload process is different than with Arduino or ESP8266 boards.

- -
#include <DigiCDC.h>
-
-#define LED_PIN 1
-#define INPUT_PIN 2  // Physical pin P4 is analog input 2
-
-void setup() {
-  SerialUSB.begin();
-  pinMode(LED_PIN, OUTPUT);
-}
-
-void loop() {
-  if (SerialUSB.available()) {
-    digitalWrite(LED_PIN, HIGH);
-    SerialUSB.delay(250);
-
-    int reading = analogRead(INPUT_PIN);
-    SerialUSB.println(reading);
-
-    digitalWrite(LED_PIN, LOW);
-    SerialUSB.delay(5000);
-  }
-}
-
-
- -

To make it work with other boards simply use Serial.begin(115200); and Serial.println(reading);.

- -

If you connect with a tool like minicom to your system’s serial port /dev/ttyACM0, then you will get the data. To use the sensor with Home Assistant the serial sensor platform needs to be set up.

- -
sensor:
-  - platform: serial
-    port: /dev/ttyACM0
-
-
- -

The physical sensor reads the current voltage of the pin. A template sensor takes the reading and converts it into a measurement. The data sheet of the sensor unit usually contains details about the involved calculations.

- -
  - platform: template
-    sensors:
-      temperature:
-        friendly_name: Temperature
-        unit_of_measurement: "°C"
-        value_template: "{{ (((states('sensor.serial_sensor') | float * 5 / 1024 ) - 0.5) * 100) | round(1) }}"
-
-
- -

Hide the serial sensor if you don’t want to see the raw data in the frontend and you are done. The whole setup with a Digispark is not very reliable because there is no hardware USB support. As a showcase and if you don’t build your automation rules around it does the sensor what it should for a very small price.

- ]]>
diff --git a/blog/2014/12/18/website-launched/index.html b/blog/2014/12/18/website-launched/index.html index 2a230cc55c..ddc0215a82 100644 --- a/blog/2014/12/18/website-launched/index.html +++ b/blog/2014/12/18/website-launched/index.html @@ -135,6 +135,9 @@

Recent Posts

diff --git a/blog/2014/12/26/home-control-home-automation-and-the-smart-home/index.html b/blog/2014/12/26/home-control-home-automation-and-the-smart-home/index.html index e4b13b2d47..b98e303193 100644 --- a/blog/2014/12/26/home-control-home-automation-and-the-smart-home/index.html +++ b/blog/2014/12/26/home-control-home-automation-and-the-smart-home/index.html @@ -169,6 +169,9 @@ This article will try to explain how they all relate.

Recent Posts

diff --git a/blog/2015/01/04/hey-pushbullet-nice-talking-to-you/index.html b/blog/2015/01/04/hey-pushbullet-nice-talking-to-you/index.html index 17697e8d96..381546bab9 100644 --- a/blog/2015/01/04/hey-pushbullet-nice-talking-to-you/index.html +++ b/blog/2015/01/04/hey-pushbullet-nice-talking-to-you/index.html @@ -159,6 +159,9 @@

Recent Posts

diff --git a/blog/2015/01/11/bootstrapping-your-setup-with-discovery/index.html b/blog/2015/01/11/bootstrapping-your-setup-with-discovery/index.html index 1dc6020bd2..95aa78e545 100644 --- a/blog/2015/01/11/bootstrapping-your-setup-with-discovery/index.html +++ b/blog/2015/01/11/bootstrapping-your-setup-with-discovery/index.html @@ -142,6 +142,9 @@

Recent Posts

diff --git a/blog/2015/01/13/nest-in-da-house/index.html b/blog/2015/01/13/nest-in-da-house/index.html index ec184252cc..0cb6f6fbf6 100644 --- a/blog/2015/01/13/nest-in-da-house/index.html +++ b/blog/2015/01/13/nest-in-da-house/index.html @@ -146,6 +146,9 @@

Recent Posts

diff --git a/blog/2015/01/24/release-notes/index.html b/blog/2015/01/24/release-notes/index.html index 0eb58a84da..46ed82277e 100644 --- a/blog/2015/01/24/release-notes/index.html +++ b/blog/2015/01/24/release-notes/index.html @@ -152,6 +152,9 @@ Home Assistant now supports --open-ui and

Recent Posts

diff --git a/blog/2015/02/08/looking-at-the-past/index.html b/blog/2015/02/08/looking-at-the-past/index.html index 8d0471feb3..504fea8fc1 100644 --- a/blog/2015/02/08/looking-at-the-past/index.html +++ b/blog/2015/02/08/looking-at-the-past/index.html @@ -157,6 +157,9 @@ Events are saved in a local database. Google Graphs is used to draw the graph. D

Recent Posts

diff --git a/blog/2015/02/24/streaming-updates/index.html b/blog/2015/02/24/streaming-updates/index.html index 380bc27e19..228f1d8af5 100644 --- a/blog/2015/02/24/streaming-updates/index.html +++ b/blog/2015/02/24/streaming-updates/index.html @@ -143,6 +143,9 @@

Recent Posts

diff --git a/blog/2015/03/01/home-assistant-migrating-to-yaml/index.html b/blog/2015/03/01/home-assistant-migrating-to-yaml/index.html index 5382324133..c068aa72e2 100644 --- a/blog/2015/03/01/home-assistant-migrating-to-yaml/index.html +++ b/blog/2015/03/01/home-assistant-migrating-to-yaml/index.html @@ -137,6 +137,9 @@

Recent Posts

diff --git a/blog/2015/03/08/new-logo/index.html b/blog/2015/03/08/new-logo/index.html index 8bebc823ab..d920c1d725 100644 --- a/blog/2015/03/08/new-logo/index.html +++ b/blog/2015/03/08/new-logo/index.html @@ -140,6 +140,9 @@ The old logo, the new detailed logo and the new simple logo.

Recent Posts

diff --git a/blog/2015/03/11/release-notes/index.html b/blog/2015/03/11/release-notes/index.html index c3b0a60bdb..6ecab95a26 100644 --- a/blog/2015/03/11/release-notes/index.html +++ b/blog/2015/03/11/release-notes/index.html @@ -165,6 +165,9 @@ An initial version of voice control for Home Assistant has landed. The current i

Recent Posts

diff --git a/blog/2015/03/22/release-notes/index.html b/blog/2015/03/22/release-notes/index.html index b58620b3cd..aeee585d7f 100644 --- a/blog/2015/03/22/release-notes/index.html +++ b/blog/2015/03/22/release-notes/index.html @@ -201,6 +201,9 @@ I (Paulus) have contributed a scene component. A user can create scenes that cap

Recent Posts

diff --git a/blog/2015/04/25/release-notes/index.html b/blog/2015/04/25/release-notes/index.html index 3a3c21d0cc..b9344b91bd 100644 --- a/blog/2015/04/25/release-notes/index.html +++ b/blog/2015/04/25/release-notes/index.html @@ -209,6 +209,9 @@

Recent Posts

diff --git a/blog/2015/05/09/utc-time-zone-awareness/index.html b/blog/2015/05/09/utc-time-zone-awareness/index.html index a3714b0e20..7b9eeffcd1 100644 --- a/blog/2015/05/09/utc-time-zone-awareness/index.html +++ b/blog/2015/05/09/utc-time-zone-awareness/index.html @@ -153,6 +153,9 @@

Recent Posts

diff --git a/blog/2015/05/14/release-notes/index.html b/blog/2015/05/14/release-notes/index.html index 403c96fc86..c591edf0f1 100644 --- a/blog/2015/05/14/release-notes/index.html +++ b/blog/2015/05/14/release-notes/index.html @@ -223,6 +223,9 @@ Before diving into the newly supported devices and services, I want to highlight

Recent Posts

diff --git a/blog/2015/06/10/release-notes/index.html b/blog/2015/06/10/release-notes/index.html index 94b6a041e8..f8ff842f14 100644 --- a/blog/2015/06/10/release-notes/index.html +++ b/blog/2015/06/10/release-notes/index.html @@ -269,6 +269,9 @@ This switch platform allows you to control your motion detection setting on your

Recent Posts

diff --git a/blog/2015/07/11/ip-cameras-arduino-kodi-efergy-support/index.html b/blog/2015/07/11/ip-cameras-arduino-kodi-efergy-support/index.html index 084952f8bc..ad2863e41b 100644 --- a/blog/2015/07/11/ip-cameras-arduino-kodi-efergy-support/index.html +++ b/blog/2015/07/11/ip-cameras-arduino-kodi-efergy-support/index.html @@ -233,6 +233,9 @@ Fabian has added support for Forecast.io to g

Recent Posts

diff --git a/blog/2015/08/09/mqtt-raspberry-pi-squeezebox-asuswrt-support/index.html b/blog/2015/08/09/mqtt-raspberry-pi-squeezebox-asuswrt-support/index.html index 9a0b96321e..ad0ff3fc83 100644 --- a/blog/2015/08/09/mqtt-raspberry-pi-squeezebox-asuswrt-support/index.html +++ b/blog/2015/08/09/mqtt-raspberry-pi-squeezebox-asuswrt-support/index.html @@ -216,6 +216,9 @@ Support for Temper temperature sensors has been contributed by

Recent Posts

diff --git a/blog/2015/08/17/verisure-and-modern-tp-link-router-support/index.html b/blog/2015/08/17/verisure-and-modern-tp-link-router-support/index.html index ed0f181d12..5765a30d51 100644 --- a/blog/2015/08/17/verisure-and-modern-tp-link-router-support/index.html +++ b/blog/2015/08/17/verisure-and-modern-tp-link-router-support/index.html @@ -153,6 +153,9 @@

Recent Posts

diff --git a/blog/2015/08/26/laundry-automation-with-moteino-mqtt-and-home-assistant/index.html b/blog/2015/08/26/laundry-automation-with-moteino-mqtt-and-home-assistant/index.html index 1100d04d7d..981e7a1962 100644 --- a/blog/2015/08/26/laundry-automation-with-moteino-mqtt-and-home-assistant/index.html +++ b/blog/2015/08/26/laundry-automation-with-moteino-mqtt-and-home-assistant/index.html @@ -253,6 +253,9 @@ The automation and script syntax here is using a deprecated and no longer suppor

Recent Posts

diff --git a/blog/2015/08/31/version-7-revamped-ui-and-improved-distribution/index.html b/blog/2015/08/31/version-7-revamped-ui-and-improved-distribution/index.html index c96962becc..56cd3e5f42 100644 --- a/blog/2015/08/31/version-7-revamped-ui-and-improved-distribution/index.html +++ b/blog/2015/08/31/version-7-revamped-ui-and-improved-distribution/index.html @@ -214,6 +214,9 @@

Recent Posts

diff --git a/blog/2015/09/11/different-ways-to-use-mqtt-with-home-assistant/index.html b/blog/2015/09/11/different-ways-to-use-mqtt-with-home-assistant/index.html index eaed760909..21bdd1d088 100644 --- a/blog/2015/09/11/different-ways-to-use-mqtt-with-home-assistant/index.html +++ b/blog/2015/09/11/different-ways-to-use-mqtt-with-home-assistant/index.html @@ -291,6 +291,9 @@

Recent Posts

diff --git a/blog/2015/09/13/home-assistant-meets-ifttt/index.html b/blog/2015/09/13/home-assistant-meets-ifttt/index.html index 4ac5d7ebc2..80483e8527 100644 --- a/blog/2015/09/13/home-assistant-meets-ifttt/index.html +++ b/blog/2015/09/13/home-assistant-meets-ifttt/index.html @@ -281,6 +281,9 @@

Recent Posts

diff --git a/blog/2015/09/18/monitoring-with-glances-and-home-assistant/index.html b/blog/2015/09/18/monitoring-with-glances-and-home-assistant/index.html index 9670e43f1a..2bd50e7a4c 100644 --- a/blog/2015/09/18/monitoring-with-glances-and-home-assistant/index.html +++ b/blog/2015/09/18/monitoring-with-glances-and-home-assistant/index.html @@ -180,6 +180,9 @@ Glances web server started on http://0.0.0.0:61208/

Recent Posts

diff --git a/blog/2015/09/19/alarm-sonos-and-itunes-support/index.html b/blog/2015/09/19/alarm-sonos-and-itunes-support/index.html index f58e025896..c3f75b3fd5 100644 --- a/blog/2015/09/19/alarm-sonos-and-itunes-support/index.html +++ b/blog/2015/09/19/alarm-sonos-and-itunes-support/index.html @@ -176,6 +176,9 @@ Automation has gotten a lot of love. It now supports conditions, multiple trigge

Recent Posts

diff --git a/blog/2015/10/05/home-assistant-goes-geo-with-owntracks/index.html b/blog/2015/10/05/home-assistant-goes-geo-with-owntracks/index.html index d163045de0..2bad1dc4cb 100644 --- a/blog/2015/10/05/home-assistant-goes-geo-with-owntracks/index.html +++ b/blog/2015/10/05/home-assistant-goes-geo-with-owntracks/index.html @@ -159,6 +159,9 @@ Map in Home Assistant showing two people and three zones (home, school, work)

Recent Posts

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 8b34a654df..2bd1bc0ca9 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 @@ -344,6 +344,9 @@ Home Assistant will keep track of historical values and allow you to integrate i

Recent Posts

diff --git a/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/index.html b/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/index.html index ed7c9e79de..3175fe1dcd 100644 --- a/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/index.html +++ b/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/index.html @@ -149,6 +149,9 @@

Recent Posts

diff --git a/blog/2015/10/26/firetv-and-radiotherm-now-supported/index.html b/blog/2015/10/26/firetv-and-radiotherm-now-supported/index.html index f06d64aa72..632d5bbccb 100644 --- a/blog/2015/10/26/firetv-and-radiotherm-now-supported/index.html +++ b/blog/2015/10/26/firetv-and-radiotherm-now-supported/index.html @@ -166,6 +166,9 @@ This makes more sense as most people run Home Assistant as a daemon

Recent Posts

diff --git a/blog/2015/11/16/zwave-switches-lights-and-honeywell-thermostats-now-supported/index.html b/blog/2015/11/16/zwave-switches-lights-and-honeywell-thermostats-now-supported/index.html index 9c8fd3686a..78962ac1b4 100644 --- a/blog/2015/11/16/zwave-switches-lights-and-honeywell-thermostats-now-supported/index.html +++ b/blog/2015/11/16/zwave-switches-lights-and-honeywell-thermostats-now-supported/index.html @@ -164,6 +164,9 @@

Recent Posts

diff --git a/blog/2015/11/22/survey-november-2015/index.html b/blog/2015/11/22/survey-november-2015/index.html index 73740dd71c..3bea78cc06 100644 --- a/blog/2015/11/22/survey-november-2015/index.html +++ b/blog/2015/11/22/survey-november-2015/index.html @@ -191,6 +191,9 @@

Recent Posts

diff --git a/blog/2015/12/05/community-highlights/index.html b/blog/2015/12/05/community-highlights/index.html index 40948814d8..ff0cf1e838 100644 --- a/blog/2015/12/05/community-highlights/index.html +++ b/blog/2015/12/05/community-highlights/index.html @@ -142,6 +142,9 @@

Recent Posts

diff --git a/blog/2015/12/06/locks-rollershutters-binary-sensors-and-influxdb-support/index.html b/blog/2015/12/06/locks-rollershutters-binary-sensors-and-influxdb-support/index.html index e19aee4fb1..0fe0572795 100644 --- a/blog/2015/12/06/locks-rollershutters-binary-sensors-and-influxdb-support/index.html +++ b/blog/2015/12/06/locks-rollershutters-binary-sensors-and-influxdb-support/index.html @@ -150,6 +150,9 @@

Recent Posts

diff --git a/blog/2015/12/07/influxdb-and-grafana/index.html b/blog/2015/12/07/influxdb-and-grafana/index.html index 6a02ed7387..6e74fbf11f 100644 --- a/blog/2015/12/07/influxdb-and-grafana/index.html +++ b/blog/2015/12/07/influxdb-and-grafana/index.html @@ -204,6 +204,9 @@ name: binary_sensor

Recent Posts

diff --git a/blog/2015/12/10/activating-tasker-tasks-from-home-assistant-using-command-line-switches/index.html b/blog/2015/12/10/activating-tasker-tasks-from-home-assistant-using-command-line-switches/index.html index 5aaa653ae0..e9ec5bb2ef 100644 --- a/blog/2015/12/10/activating-tasker-tasks-from-home-assistant-using-command-line-switches/index.html +++ b/blog/2015/12/10/activating-tasker-tasks-from-home-assistant-using-command-line-switches/index.html @@ -171,6 +171,9 @@ This is where we’ll configure our task, so select the plus icon to select an a

Recent Posts

diff --git a/blog/2015/12/12/philips-hue-blocks-3rd-party-bulbs/index.html b/blog/2015/12/12/philips-hue-blocks-3rd-party-bulbs/index.html index b505b3b382..5e31878fb1 100644 --- a/blog/2015/12/12/philips-hue-blocks-3rd-party-bulbs/index.html +++ b/blog/2015/12/12/philips-hue-blocks-3rd-party-bulbs/index.html @@ -157,6 +157,9 @@ Philips Hue FAQ entries regarding 3rd party light bulbs.

Recent Posts

diff --git a/blog/2015/12/13/setup-encryption-using-lets-encrypt/index.html b/blog/2015/12/13/setup-encryption-using-lets-encrypt/index.html index 3a4c348ec3..4fe0fb4c50 100644 --- a/blog/2015/12/13/setup-encryption-using-lets-encrypt/index.html +++ b/blog/2015/12/13/setup-encryption-using-lets-encrypt/index.html @@ -199,6 +199,9 @@ sudo docker run -it --rm -p 80:80 --name certbot \

Recent Posts

diff --git a/blog/2015/12/22/amazon-echo-icloud-and-templates/index.html b/blog/2015/12/22/amazon-echo-icloud-and-templates/index.html index 406155dab1..3886d8a715 100644 --- a/blog/2015/12/22/amazon-echo-icloud-and-templates/index.html +++ b/blog/2015/12/22/amazon-echo-icloud-and-templates/index.html @@ -174,6 +174,9 @@

Recent Posts

diff --git a/blog/2016/01/17/extended-support-for-diy-solutions/index.html b/blog/2016/01/17/extended-support-for-diy-solutions/index.html index 6d2a291b5d..f7dd096cb1 100644 --- a/blog/2016/01/17/extended-support-for-diy-solutions/index.html +++ b/blog/2016/01/17/extended-support-for-diy-solutions/index.html @@ -165,6 +165,9 @@

Recent Posts

diff --git a/blog/2016/01/19/perfect-home-automation/index.html b/blog/2016/01/19/perfect-home-automation/index.html index 5380b9706b..03fb343fe8 100644 --- a/blog/2016/01/19/perfect-home-automation/index.html +++ b/blog/2016/01/19/perfect-home-automation/index.html @@ -154,6 +154,9 @@

Recent Posts

diff --git a/blog/2016/01/30/insteon-lifx-twitter-and-zigbee/index.html b/blog/2016/01/30/insteon-lifx-twitter-and-zigbee/index.html index bd1ae98254..e6f2c5b750 100644 --- a/blog/2016/01/30/insteon-lifx-twitter-and-zigbee/index.html +++ b/blog/2016/01/30/insteon-lifx-twitter-and-zigbee/index.html @@ -168,6 +168,9 @@ Example of the new views in the frontend. Learn mor

Recent Posts

diff --git a/blog/2016/02/09/Smarter-Smart-Things-with-MQTT-and-Home-Assistant/index.html b/blog/2016/02/09/Smarter-Smart-Things-with-MQTT-and-Home-Assistant/index.html index f0a0ab07d5..e43c507929 100644 --- a/blog/2016/02/09/Smarter-Smart-Things-with-MQTT-and-Home-Assistant/index.html +++ b/blog/2016/02/09/Smarter-Smart-Things-with-MQTT-and-Home-Assistant/index.html @@ -288,6 +288,9 @@ Z-Wave light bulb |

Recent Posts

diff --git a/blog/2016/02/12/classifying-the-internet-of-things/index.html b/blog/2016/02/12/classifying-the-internet-of-things/index.html index 0d955f79d0..7f48b649f8 100644 --- a/blog/2016/02/12/classifying-the-internet-of-things/index.html +++ b/blog/2016/02/12/classifying-the-internet-of-things/index.html @@ -262,6 +262,9 @@

Recent Posts

diff --git a/blog/2016/02/13/speedtest-bloomsky-splunk-and-garage-doors/index.html b/blog/2016/02/13/speedtest-bloomsky-splunk-and-garage-doors/index.html index 65b4e89028..a64f7af72a 100644 --- a/blog/2016/02/13/speedtest-bloomsky-splunk-and-garage-doors/index.html +++ b/blog/2016/02/13/speedtest-bloomsky-splunk-and-garage-doors/index.html @@ -173,6 +173,9 @@

Recent Posts

diff --git a/blog/2016/02/18/multi-room-audio-with-snapcast/index.html b/blog/2016/02/18/multi-room-audio-with-snapcast/index.html index 814026d707..683f4116e8 100644 --- a/blog/2016/02/18/multi-room-audio-with-snapcast/index.html +++ b/blog/2016/02/18/multi-room-audio-with-snapcast/index.html @@ -227,6 +227,9 @@

Recent Posts

diff --git a/blog/2016/02/20/community-highlights/index.html b/blog/2016/02/20/community-highlights/index.html index a6d434a3bd..e7e1594332 100644 --- a/blog/2016/02/20/community-highlights/index.html +++ b/blog/2016/02/20/community-highlights/index.html @@ -170,6 +170,9 @@ Hold your NFC tag against the belly of Garfield to unlock the alarm.

Recent Posts

diff --git a/blog/2016/02/27/steam-d-link-smart-plugs-and-neurio-energy-sensors/index.html b/blog/2016/02/27/steam-d-link-smart-plugs-and-neurio-energy-sensors/index.html index 4b504e466c..fcfd6b366a 100644 --- a/blog/2016/02/27/steam-d-link-smart-plugs-and-neurio-energy-sensors/index.html +++ b/blog/2016/02/27/steam-d-link-smart-plugs-and-neurio-energy-sensors/index.html @@ -172,6 +172,9 @@

Recent Posts

diff --git a/blog/2016/03/12/z-wave-pep257-templated-service-calls/index.html b/blog/2016/03/12/z-wave-pep257-templated-service-calls/index.html index 3c3bd41509..d3f62d70dd 100644 --- a/blog/2016/03/12/z-wave-pep257-templated-service-calls/index.html +++ b/blog/2016/03/12/z-wave-pep257-templated-service-calls/index.html @@ -173,6 +173,9 @@ player state attributes. This change affects automations, scripts and scenes.

Recent Posts

diff --git a/blog/2016/03/26/embedded-mqtt-broker-uber-yamaha-growl/index.html b/blog/2016/03/26/embedded-mqtt-broker-uber-yamaha-growl/index.html index 6f4280a112..a1eb899c72 100644 --- a/blog/2016/03/26/embedded-mqtt-broker-uber-yamaha-growl/index.html +++ b/blog/2016/03/26/embedded-mqtt-broker-uber-yamaha-growl/index.html @@ -181,6 +181,9 @@

Recent Posts

diff --git a/blog/2016/04/05/your-hub-should-be-local-and-open/index.html b/blog/2016/04/05/your-hub-should-be-local-and-open/index.html index 879f8d9b74..6747687133 100644 --- a/blog/2016/04/05/your-hub-should-be-local-and-open/index.html +++ b/blog/2016/04/05/your-hub-should-be-local-and-open/index.html @@ -141,6 +141,9 @@

Recent Posts

diff --git a/blog/2016/04/07/static-website/index.html b/blog/2016/04/07/static-website/index.html index 9ce0b851cc..1f65761b8e 100644 --- a/blog/2016/04/07/static-website/index.html +++ b/blog/2016/04/07/static-website/index.html @@ -144,6 +144,9 @@

Recent Posts

diff --git a/blog/2016/04/09/onkyo-panasonic-gtfs-and-config-validation/index.html b/blog/2016/04/09/onkyo-panasonic-gtfs-and-config-validation/index.html index 65c9f07113..9e4c0512cf 100644 --- a/blog/2016/04/09/onkyo-panasonic-gtfs-and-config-validation/index.html +++ b/blog/2016/04/09/onkyo-panasonic-gtfs-and-config-validation/index.html @@ -153,6 +153,9 @@

Recent Posts

diff --git a/blog/2016/04/17/updated-documentation/index.html b/blog/2016/04/17/updated-documentation/index.html index 5683b619c4..4a03a913a4 100644 --- a/blog/2016/04/17/updated-documentation/index.html +++ b/blog/2016/04/17/updated-documentation/index.html @@ -139,6 +139,9 @@

Recent Posts

diff --git a/blog/2016/04/19/to-infinity-and-beyond/index.html b/blog/2016/04/19/to-infinity-and-beyond/index.html index e2d8356ec8..4d641b93d5 100644 --- a/blog/2016/04/19/to-infinity-and-beyond/index.html +++ b/blog/2016/04/19/to-infinity-and-beyond/index.html @@ -151,6 +151,9 @@

Recent Posts

diff --git a/blog/2016/04/20/bluetooth-lg-webos-tvs-and-roombas/index.html b/blog/2016/04/20/bluetooth-lg-webos-tvs-and-roombas/index.html index e7fbe8a1a0..639c37f844 100644 --- a/blog/2016/04/20/bluetooth-lg-webos-tvs-and-roombas/index.html +++ b/blog/2016/04/20/bluetooth-lg-webos-tvs-and-roombas/index.html @@ -173,6 +173,9 @@

Recent Posts

diff --git a/blog/2016/04/30/ibeacons-part-1-making-presence-detection-work-better/index.html b/blog/2016/04/30/ibeacons-part-1-making-presence-detection-work-better/index.html index aa323f8928..bcd122fbba 100644 --- a/blog/2016/04/30/ibeacons-part-1-making-presence-detection-work-better/index.html +++ b/blog/2016/04/30/ibeacons-part-1-making-presence-detection-work-better/index.html @@ -215,6 +215,9 @@ For example, my wife works next door - and I couldn’t detect whether she’s a

Recent Posts

diff --git a/blog/2016/05/06/open-iot-summit-talk/index.html b/blog/2016/05/06/open-iot-summit-talk/index.html index 78626e76fb..bf263313c4 100644 --- a/blog/2016/05/06/open-iot-summit-talk/index.html +++ b/blog/2016/05/06/open-iot-summit-talk/index.html @@ -139,6 +139,9 @@

Recent Posts

diff --git a/blog/2016/05/07/empowering-scripts-and-alexa/index.html b/blog/2016/05/07/empowering-scripts-and-alexa/index.html index 2fab405cd9..98f4deb993 100644 --- a/blog/2016/05/07/empowering-scripts-and-alexa/index.html +++ b/blog/2016/05/07/empowering-scripts-and-alexa/index.html @@ -213,6 +213,9 @@

Recent Posts

diff --git a/blog/2016/05/12/video-configuring-home-assistant/index.html b/blog/2016/05/12/video-configuring-home-assistant/index.html index 0f7701aa2a..aedb0da01e 100644 --- a/blog/2016/05/12/video-configuring-home-assistant/index.html +++ b/blog/2016/05/12/video-configuring-home-assistant/index.html @@ -139,6 +139,9 @@

Recent Posts

diff --git a/blog/2016/05/18/why-we-use-polymer/index.html b/blog/2016/05/18/why-we-use-polymer/index.html index bc61c87d86..03ecc07507 100644 --- a/blog/2016/05/18/why-we-use-polymer/index.html +++ b/blog/2016/05/18/why-we-use-polymer/index.html @@ -145,6 +145,9 @@

Recent Posts

diff --git a/blog/2016/05/21/release-020/index.html b/blog/2016/05/21/release-020/index.html index 2828d4fedb..8d5938ed5d 100644 --- a/blog/2016/05/21/release-020/index.html +++ b/blog/2016/05/21/release-020/index.html @@ -169,6 +169,9 @@

Recent Posts

diff --git a/blog/2016/05/22/get-started-with-all-in-one-installer/index.html b/blog/2016/05/22/get-started-with-all-in-one-installer/index.html index fd18a05d9e..edab91b47d 100644 --- a/blog/2016/05/22/get-started-with-all-in-one-installer/index.html +++ b/blog/2016/05/22/get-started-with-all-in-one-installer/index.html @@ -142,6 +142,9 @@

Recent Posts

diff --git a/blog/2016/05/26/ibeacons-how-to-track-things-that-cant-track-themselves-part-ii/index.html b/blog/2016/05/26/ibeacons-how-to-track-things-that-cant-track-themselves-part-ii/index.html index 8c5311eee8..973571ca75 100644 --- a/blog/2016/05/26/ibeacons-how-to-track-things-that-cant-track-themselves-part-ii/index.html +++ b/blog/2016/05/26/ibeacons-how-to-track-things-that-cant-track-themselves-part-ii/index.html @@ -243,6 +243,9 @@

Recent Posts

diff --git a/blog/2016/06/01/community-highlights/index.html b/blog/2016/06/01/community-highlights/index.html index 0066f0e8e4..21abbe0bff 100644 --- a/blog/2016/06/01/community-highlights/index.html +++ b/blog/2016/06/01/community-highlights/index.html @@ -151,6 +151,9 @@

Recent Posts

diff --git a/blog/2016/06/08/super-fast-web-enocean-lirc/index.html b/blog/2016/06/08/super-fast-web-enocean-lirc/index.html index d5e670e993..8d87742a23 100644 --- a/blog/2016/06/08/super-fast-web-enocean-lirc/index.html +++ b/blog/2016/06/08/super-fast-web-enocean-lirc/index.html @@ -183,6 +183,9 @@

Recent Posts

diff --git a/blog/2016/06/13/home-assistant-at-pycon-2016/index.html b/blog/2016/06/13/home-assistant-at-pycon-2016/index.html index 79258e196a..f1dc342dc8 100644 --- a/blog/2016/06/13/home-assistant-at-pycon-2016/index.html +++ b/blog/2016/06/13/home-assistant-at-pycon-2016/index.html @@ -155,6 +155,9 @@

Recent Posts

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 0cd43bc6d7..f738a50986 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 @@ -177,6 +177,9 @@

Recent Posts

diff --git a/blog/2016/06/23/usb-webcams-and-home-assistant/index.html b/blog/2016/06/23/usb-webcams-and-home-assistant/index.html index 04d67b5ac2..37d2c76354 100644 --- a/blog/2016/06/23/usb-webcams-and-home-assistant/index.html +++ b/blog/2016/06/23/usb-webcams-and-home-assistant/index.html @@ -223,6 +223,9 @@ target_dir /tmp

Recent Posts

diff --git a/blog/2016/07/01/envisalink-homematic-hdmi-cec-and-sony-bravia-tv/index.html b/blog/2016/07/01/envisalink-homematic-hdmi-cec-and-sony-bravia-tv/index.html index f7d384f781..69d4c146e1 100644 --- a/blog/2016/07/01/envisalink-homematic-hdmi-cec-and-sony-bravia-tv/index.html +++ b/blog/2016/07/01/envisalink-homematic-hdmi-cec-and-sony-bravia-tv/index.html @@ -178,6 +178,9 @@

Recent Posts

diff --git a/blog/2016/07/06/pocketchip-running-home-assistant/index.html b/blog/2016/07/06/pocketchip-running-home-assistant/index.html index 86adac68be..70e360c5da 100644 --- a/blog/2016/07/06/pocketchip-running-home-assistant/index.html +++ b/blog/2016/07/06/pocketchip-running-home-assistant/index.html @@ -168,6 +168,9 @@ Over a year ago I participated in the

Recent Posts

diff --git a/blog/2016/07/16/sqlalchemy-knx-join-simplisafe/index.html b/blog/2016/07/16/sqlalchemy-knx-join-simplisafe/index.html index cceaeb3a46..e07076a4b5 100644 --- a/blog/2016/07/16/sqlalchemy-knx-join-simplisafe/index.html +++ b/blog/2016/07/16/sqlalchemy-knx-join-simplisafe/index.html @@ -174,6 +174,9 @@

Recent Posts

diff --git a/blog/2016/07/19/visualizing-your-iot-data/index.html b/blog/2016/07/19/visualizing-your-iot-data/index.html index 55f549ce86..c76aa25863 100644 --- a/blog/2016/07/19/visualizing-your-iot-data/index.html +++ b/blog/2016/07/19/visualizing-your-iot-data/index.html @@ -211,6 +211,9 @@ SQLite version 3.11.0 2016-02-15 17:29:24

Recent Posts

diff --git a/blog/2016/07/23/internet-of-things-data-exploration-with-jupyter-notebooks/index.html b/blog/2016/07/23/internet-of-things-data-exploration-with-jupyter-notebooks/index.html index 785c3ed6e0..b66195a1f7 100644 --- a/blog/2016/07/23/internet-of-things-data-exploration-with-jupyter-notebooks/index.html +++ b/blog/2016/07/23/internet-of-things-data-exploration-with-jupyter-notebooks/index.html @@ -178,6 +178,9 @@ One of the graphs created with this tutorial.

Recent Posts

diff --git a/blog/2016/07/28/esp8266-and-micropython-part1/index.html b/blog/2016/07/28/esp8266-and-micropython-part1/index.html index 33fb534ce9..70629ee513 100644 --- a/blog/2016/07/28/esp8266-and-micropython-part1/index.html +++ b/blog/2016/07/28/esp8266-and-micropython-part1/index.html @@ -258,6 +258,9 @@ If a module is missing then you need to download it from the

Recent Posts

diff --git a/blog/2016/07/30/custom-frontend-panels-jupyter-notebooks-directv/index.html b/blog/2016/07/30/custom-frontend-panels-jupyter-notebooks-directv/index.html index cbdd22b612..f684225bb8 100644 --- a/blog/2016/07/30/custom-frontend-panels-jupyter-notebooks-directv/index.html +++ b/blog/2016/07/30/custom-frontend-panels-jupyter-notebooks-directv/index.html @@ -190,6 +190,9 @@

Recent Posts

diff --git a/blog/2016/08/03/laundry-automation-update/index.html b/blog/2016/08/03/laundry-automation-update/index.html index 78835acb69..f0bc35581a 100644 --- a/blog/2016/08/03/laundry-automation-update/index.html +++ b/blog/2016/08/03/laundry-automation-update/index.html @@ -222,6 +222,9 @@

Recent Posts

diff --git a/blog/2016/08/07/optimizing-the-home-assistant-mobile-web-app/index.html b/blog/2016/08/07/optimizing-the-home-assistant-mobile-web-app/index.html index 50db5825f6..ad32718ca4 100644 --- a/blog/2016/08/07/optimizing-the-home-assistant-mobile-web-app/index.html +++ b/blog/2016/08/07/optimizing-the-home-assistant-mobile-web-app/index.html @@ -217,6 +217,9 @@

Recent Posts

diff --git a/blog/2016/08/13/foursquare-fast-com-ffmpeg-gpsd/index.html b/blog/2016/08/13/foursquare-fast-com-ffmpeg-gpsd/index.html index daefc42466..f4f6ab2cdd 100644 --- a/blog/2016/08/13/foursquare-fast-com-ffmpeg-gpsd/index.html +++ b/blog/2016/08/13/foursquare-fast-com-ffmpeg-gpsd/index.html @@ -190,6 +190,9 @@

Recent Posts

diff --git a/blog/2016/08/16/we-have-apps-now/index.html b/blog/2016/08/16/we-have-apps-now/index.html index 661ceb6e47..fbd6ed48e2 100644 --- a/blog/2016/08/16/we-have-apps-now/index.html +++ b/blog/2016/08/16/we-have-apps-now/index.html @@ -228,6 +228,9 @@

Recent Posts

diff --git a/blog/2016/08/19/github-style-calendar-heatmap-of-device-data/index.html b/blog/2016/08/19/github-style-calendar-heatmap-of-device-data/index.html index 334b3e071d..4eb07c73a7 100644 --- a/blog/2016/08/19/github-style-calendar-heatmap-of-device-data/index.html +++ b/blog/2016/08/19/github-style-calendar-heatmap-of-device-data/index.html @@ -140,6 +140,9 @@ Heatmap

Recent Posts

diff --git a/blog/2016/08/28/notifications-hue-fake-unification/index.html b/blog/2016/08/28/notifications-hue-fake-unification/index.html index 48e24ea32c..6406910181 100644 --- a/blog/2016/08/28/notifications-hue-fake-unification/index.html +++ b/blog/2016/08/28/notifications-hue-fake-unification/index.html @@ -289,6 +289,9 @@

Recent Posts

diff --git a/blog/2016/08/31/esp8266-and-micropython-part2/index.html b/blog/2016/08/31/esp8266-and-micropython-part2/index.html index 0f6dd7e062..bc4bf138ba 100644 --- a/blog/2016/08/31/esp8266-and-micropython-part2/index.html +++ b/blog/2016/08/31/esp8266-and-micropython-part2/index.html @@ -216,6 +216,9 @@ So, part 1 of ESP8266

Recent Posts

diff --git a/blog/2016/09/10/notify-group-reload-api-pihole/index.html b/blog/2016/09/10/notify-group-reload-api-pihole/index.html index 66e4de33f8..b177564747 100644 --- a/blog/2016/09/10/notify-group-reload-api-pihole/index.html +++ b/blog/2016/09/10/notify-group-reload-api-pihole/index.html @@ -218,6 +218,9 @@

Recent Posts

diff --git a/blog/2016/09/29/async-sleepiq-emoncms-stocks/index.html b/blog/2016/09/29/async-sleepiq-emoncms-stocks/index.html index e096d00729..f241951475 100644 --- a/blog/2016/09/29/async-sleepiq-emoncms-stocks/index.html +++ b/blog/2016/09/29/async-sleepiq-emoncms-stocks/index.html @@ -223,6 +223,9 @@

Recent Posts

diff --git a/blog/2016/10/01/we-have-raspberry-image-now/index.html b/blog/2016/10/01/we-have-raspberry-image-now/index.html index f23e8507da..e969a83323 100644 --- a/blog/2016/10/01/we-have-raspberry-image-now/index.html +++ b/blog/2016/10/01/we-have-raspberry-image-now/index.html @@ -144,6 +144,9 @@

Recent Posts

diff --git a/blog/2016/10/02/hacktoberfest/index.html b/blog/2016/10/02/hacktoberfest/index.html index 1266327ace..47088af1ab 100644 --- a/blog/2016/10/02/hacktoberfest/index.html +++ b/blog/2016/10/02/hacktoberfest/index.html @@ -152,6 +152,9 @@

Recent Posts

diff --git a/blog/2016/10/08/hassbian-rest-digital-ocean/index.html b/blog/2016/10/08/hassbian-rest-digital-ocean/index.html index 439044888e..91ee7acfc6 100644 --- a/blog/2016/10/08/hassbian-rest-digital-ocean/index.html +++ b/blog/2016/10/08/hassbian-rest-digital-ocean/index.html @@ -234,6 +234,9 @@

Recent Posts

diff --git a/blog/2016/10/22/flash-briefing-updater-hacktoberfest/index.html b/blog/2016/10/22/flash-briefing-updater-hacktoberfest/index.html index 5bab4897e6..30baad4b6e 100644 --- a/blog/2016/10/22/flash-briefing-updater-hacktoberfest/index.html +++ b/blog/2016/10/22/flash-briefing-updater-hacktoberfest/index.html @@ -406,6 +406,9 @@

Recent Posts

diff --git a/blog/2016/10/25/explaining-the-updater/index.html b/blog/2016/10/25/explaining-the-updater/index.html index 68645cd4ca..b11029b230 100644 --- a/blog/2016/10/25/explaining-the-updater/index.html +++ b/blog/2016/10/25/explaining-the-updater/index.html @@ -162,6 +162,9 @@

Recent Posts

diff --git a/blog/2016/11/05/hacktoberfest-influxdb-weather/index.html b/blog/2016/11/05/hacktoberfest-influxdb-weather/index.html index c5c8553b4f..481e20718a 100644 --- a/blog/2016/11/05/hacktoberfest-influxdb-weather/index.html +++ b/blog/2016/11/05/hacktoberfest-influxdb-weather/index.html @@ -230,6 +230,9 @@

Recent Posts

diff --git a/blog/2016/11/20/calendar-wink-thermostats-cisco-ios/index.html b/blog/2016/11/20/calendar-wink-thermostats-cisco-ios/index.html index 90c804951d..d6e62da5ce 100644 --- a/blog/2016/11/20/calendar-wink-thermostats-cisco-ios/index.html +++ b/blog/2016/11/20/calendar-wink-thermostats-cisco-ios/index.html @@ -191,6 +191,9 @@

Recent Posts

diff --git a/blog/2016/12/03/remote-websockets-sonarr/index.html b/blog/2016/12/03/remote-websockets-sonarr/index.html index 8333ec493f..884c1dc1f7 100644 --- a/blog/2016/12/03/remote-websockets-sonarr/index.html +++ b/blog/2016/12/03/remote-websockets-sonarr/index.html @@ -252,6 +252,9 @@

Recent Posts

diff --git a/blog/2016/12/17/text-to-speech-aquostv-flic-zamg/index.html b/blog/2016/12/17/text-to-speech-aquostv-flic-zamg/index.html index 1182ee0fdd..44e6b7e6c8 100644 --- a/blog/2016/12/17/text-to-speech-aquostv-flic-zamg/index.html +++ b/blog/2016/12/17/text-to-speech-aquostv-flic-zamg/index.html @@ -205,6 +205,9 @@

Recent Posts

diff --git a/blog/2016/12/19/thank-you/index.html b/blog/2016/12/19/thank-you/index.html index 643e3ef00d..46f604a935 100644 --- a/blog/2016/12/19/thank-you/index.html +++ b/blog/2016/12/19/thank-you/index.html @@ -143,6 +143,9 @@

Recent Posts

diff --git a/blog/2017/01/03/control-my-christmas-tree-stats/index.html b/blog/2017/01/03/control-my-christmas-tree-stats/index.html index 3688b5aac9..a395e9bad0 100644 --- a/blog/2017/01/03/control-my-christmas-tree-stats/index.html +++ b/blog/2017/01/03/control-my-christmas-tree-stats/index.html @@ -153,6 +153,9 @@

Recent Posts

diff --git a/blog/2017/01/14/iss-usps-images-packages/index.html b/blog/2017/01/14/iss-usps-images-packages/index.html index 6ff96f3f17..4e0365f83d 100644 --- a/blog/2017/01/14/iss-usps-images-packages/index.html +++ b/blog/2017/01/14/iss-usps-images-packages/index.html @@ -222,6 +222,9 @@ You have to note:

Recent Posts

diff --git a/blog/2017/01/18/numbers/index.html b/blog/2017/01/18/numbers/index.html index 5f5342b419..666cbb7d46 100644 --- a/blog/2017/01/18/numbers/index.html +++ b/blog/2017/01/18/numbers/index.html @@ -145,6 +145,9 @@

Recent Posts

diff --git a/blog/2017/01/21/home-assistant-governance/index.html b/blog/2017/01/21/home-assistant-governance/index.html index 5878c3fcf9..dfd7a36b56 100644 --- a/blog/2017/01/21/home-assistant-governance/index.html +++ b/blog/2017/01/21/home-assistant-governance/index.html @@ -182,6 +182,9 @@

Recent Posts

diff --git a/blog/2017/01/28/face-coffee-wink/index.html b/blog/2017/01/28/face-coffee-wink/index.html index 2f1aca3538..fabffbdd36 100644 --- a/blog/2017/01/28/face-coffee-wink/index.html +++ b/blog/2017/01/28/face-coffee-wink/index.html @@ -268,6 +268,9 @@

Recent Posts

diff --git a/blog/2017/02/03/babyphone/index.html b/blog/2017/02/03/babyphone/index.html index a90e67d1be..f58c663d20 100644 --- a/blog/2017/02/03/babyphone/index.html +++ b/blog/2017/02/03/babyphone/index.html @@ -247,6 +247,9 @@ We change the platform name for binary sensor in 0.38 from

Recent Posts

diff --git a/blog/2017/02/04/hassbian-toybox/index.html b/blog/2017/02/04/hassbian-toybox/index.html index e4a18527b5..db1877d258 100644 --- a/blog/2017/02/04/hassbian-toybox/index.html +++ b/blog/2017/02/04/hassbian-toybox/index.html @@ -173,6 +173,9 @@ On the close horizon from @Landrash th

Recent Posts

diff --git a/blog/2017/02/11/alert-appletv-mqtt-yeelight/index.html b/blog/2017/02/11/alert-appletv-mqtt-yeelight/index.html index 2f586c4d84..00a21ae12c 100644 --- a/blog/2017/02/11/alert-appletv-mqtt-yeelight/index.html +++ b/blog/2017/02/11/alert-appletv-mqtt-yeelight/index.html @@ -260,6 +260,9 @@

Recent Posts

diff --git a/blog/2017/02/14/clt-workshop/index.html b/blog/2017/02/14/clt-workshop/index.html index 51286c7bbd..f8c2679197 100644 --- a/blog/2017/02/14/clt-workshop/index.html +++ b/blog/2017/02/14/clt-workshop/index.html @@ -143,6 +143,9 @@

Recent Posts

diff --git a/blog/2017/02/22/home-assistant-tshirts-have-arrived/index.html b/blog/2017/02/22/home-assistant-tshirts-have-arrived/index.html index 7fc6f94afa..79fc30e007 100644 --- a/blog/2017/02/22/home-assistant-tshirts-have-arrived/index.html +++ b/blog/2017/02/22/home-assistant-tshirts-have-arrived/index.html @@ -177,6 +177,9 @@

Recent Posts

diff --git a/blog/2017/02/25/config-panel-and-state-restoration/index.html b/blog/2017/02/25/config-panel-and-state-restoration/index.html index f1370f8d06..636feaf45e 100644 --- a/blog/2017/02/25/config-panel-and-state-restoration/index.html +++ b/blog/2017/02/25/config-panel-and-state-restoration/index.html @@ -315,6 +315,9 @@

Recent Posts

diff --git a/blog/2017/03/11/repurpose-any-android-phone-as-ip-camera/index.html b/blog/2017/03/11/repurpose-any-android-phone-as-ip-camera/index.html index 9b7476066b..17c68f2a2d 100644 --- a/blog/2017/03/11/repurpose-any-android-phone-as-ip-camera/index.html +++ b/blog/2017/03/11/repurpose-any-android-phone-as-ip-camera/index.html @@ -348,6 +348,9 @@ Screenshot of all the different functionality the IP webcam integration offers.

Recent Posts

diff --git a/blog/2017/03/22/broken-dependencies/index.html b/blog/2017/03/22/broken-dependencies/index.html index ba1f261a80..eec843eadf 100644 --- a/blog/2017/03/22/broken-dependencies/index.html +++ b/blog/2017/03/22/broken-dependencies/index.html @@ -145,6 +145,9 @@

Recent Posts

diff --git a/blog/2017/03/23/opensourcecraft-interview-with-founder-paulus-schoutsen/index.html b/blog/2017/03/23/opensourcecraft-interview-with-founder-paulus-schoutsen/index.html index 39da5fccfb..21d82479fa 100644 --- a/blog/2017/03/23/opensourcecraft-interview-with-founder-paulus-schoutsen/index.html +++ b/blog/2017/03/23/opensourcecraft-interview-with-founder-paulus-schoutsen/index.html @@ -138,6 +138,9 @@

Recent Posts

diff --git a/blog/2017/03/25/todo-volumio-workday/index.html b/blog/2017/03/25/todo-volumio-workday/index.html index 47ba444c60..e72413df37 100644 --- a/blog/2017/03/25/todo-volumio-workday/index.html +++ b/blog/2017/03/25/todo-volumio-workday/index.html @@ -293,6 +293,9 @@

Recent Posts

diff --git a/blog/2017/03/28/http-to-mqtt-bridge/index.html b/blog/2017/03/28/http-to-mqtt-bridge/index.html index f8e1231993..7ab1d1d2ea 100644 --- a/blog/2017/03/28/http-to-mqtt-bridge/index.html +++ b/blog/2017/03/28/http-to-mqtt-bridge/index.html @@ -186,6 +186,9 @@

Recent Posts

diff --git a/blog/2017/04/01/thomas-krenn-award/index.html b/blog/2017/04/01/thomas-krenn-award/index.html index 5f6a33d59d..a486b5b3d5 100644 --- a/blog/2017/04/01/thomas-krenn-award/index.html +++ b/blog/2017/04/01/thomas-krenn-award/index.html @@ -147,6 +147,9 @@

Recent Posts

diff --git a/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/index.html b/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/index.html index f53c7b1cb0..37046f61e9 100644 --- a/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/index.html +++ b/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/index.html @@ -346,6 +346,9 @@

Recent Posts

diff --git a/blog/2017/04/15/ios/index.html b/blog/2017/04/15/ios/index.html index 6cd6a71526..7c47fdb21f 100644 --- a/blog/2017/04/15/ios/index.html +++ b/blog/2017/04/15/ios/index.html @@ -150,6 +150,9 @@

Recent Posts

diff --git a/blog/2017/04/17/ikea-tradfri-internet-of-things-done-right/index.html b/blog/2017/04/17/ikea-tradfri-internet-of-things-done-right/index.html index e24b7b0049..1be92dc7a0 100644 --- a/blog/2017/04/17/ikea-tradfri-internet-of-things-done-right/index.html +++ b/blog/2017/04/17/ikea-tradfri-internet-of-things-done-right/index.html @@ -203,6 +203,9 @@ After automatic discovery, Home Assistant will ask the user to finish pairing wi

Recent Posts

diff --git a/blog/2017/04/22/ikea-tradfri-spotify/index.html b/blog/2017/04/22/ikea-tradfri-spotify/index.html index 366ab9a007..9051d99e37 100644 --- a/blog/2017/04/22/ikea-tradfri-spotify/index.html +++ b/blog/2017/04/22/ikea-tradfri-spotify/index.html @@ -348,6 +348,9 @@ After automatic discovery, Home Assistant will ask the user to finish pairing wi

Recent Posts

diff --git a/blog/2017/04/24/hardware-contest-2017/index.html b/blog/2017/04/24/hardware-contest-2017/index.html index 3544f07647..da0712e193 100644 --- a/blog/2017/04/24/hardware-contest-2017/index.html +++ b/blog/2017/04/24/hardware-contest-2017/index.html @@ -143,6 +143,9 @@

Recent Posts

diff --git a/blog/2017/04/25/influxdb-grafana-docker/index.html b/blog/2017/04/25/influxdb-grafana-docker/index.html index 3dcb8b2298..bd8e2e84fc 100644 --- a/blog/2017/04/25/influxdb-grafana-docker/index.html +++ b/blog/2017/04/25/influxdb-grafana-docker/index.html @@ -185,6 +185,9 @@

Recent Posts

diff --git a/blog/2017/04/30/hassbian-1.21-its-about-time/index.html b/blog/2017/04/30/hassbian-1.21-its-about-time/index.html index c4bf5b3caf..1e519cefd7 100644 --- a/blog/2017/04/30/hassbian-1.21-its-about-time/index.html +++ b/blog/2017/04/30/hassbian-1.21-its-about-time/index.html @@ -160,6 +160,9 @@

Recent Posts

diff --git a/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/index.html b/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/index.html index 0a2bc18aee..ccbb127183 100644 --- a/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/index.html +++ b/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/index.html @@ -174,6 +174,9 @@ $ sudo systemctl start install_homeassistant.service

Recent Posts

diff --git a/blog/2017/05/05/podcast-init-interview/index.html b/blog/2017/05/05/podcast-init-interview/index.html index 76c3336140..1e767895cc 100644 --- a/blog/2017/05/05/podcast-init-interview/index.html +++ b/blog/2017/05/05/podcast-init-interview/index.html @@ -139,6 +139,9 @@

Recent Posts

diff --git a/blog/2017/05/06/zigbee-opencv-dlib/index.html b/blog/2017/05/06/zigbee-opencv-dlib/index.html index 63374c7755..8bcf33f942 100644 --- a/blog/2017/05/06/zigbee-opencv-dlib/index.html +++ b/blog/2017/05/06/zigbee-opencv-dlib/index.html @@ -337,6 +337,9 @@

Recent Posts

diff --git a/blog/2017/05/07/grazer-linuxtage-2017-talk-python-everywhere/index.html b/blog/2017/05/07/grazer-linuxtage-2017-talk-python-everywhere/index.html index 608d74f3f0..4975a12819 100644 --- a/blog/2017/05/07/grazer-linuxtage-2017-talk-python-everywhere/index.html +++ b/blog/2017/05/07/grazer-linuxtage-2017-talk-python-everywhere/index.html @@ -140,6 +140,9 @@

Recent Posts

diff --git a/blog/2017/05/13/home-assistant-on-orange-pi-zero/index.html b/blog/2017/05/13/home-assistant-on-orange-pi-zero/index.html index 7af75a228b..9d3064278b 100644 --- a/blog/2017/05/13/home-assistant-on-orange-pi-zero/index.html +++ b/blog/2017/05/13/home-assistant-on-orange-pi-zero/index.html @@ -243,6 +243,9 @@ Reading package lists... Done

Recent Posts

diff --git a/blog/2017/05/19/home-assistant-at-pycon-us-2017/index.html b/blog/2017/05/19/home-assistant-at-pycon-us-2017/index.html index 68c3e703cf..38a6f27795 100644 --- a/blog/2017/05/19/home-assistant-at-pycon-us-2017/index.html +++ b/blog/2017/05/19/home-assistant-at-pycon-us-2017/index.html @@ -138,6 +138,9 @@

Recent Posts

diff --git a/blog/2017/05/20/automation-editor-zwave-panel-ocr/index.html b/blog/2017/05/20/automation-editor-zwave-panel-ocr/index.html index 8e8082cf54..65beb8bad8 100644 --- a/blog/2017/05/20/automation-editor-zwave-panel-ocr/index.html +++ b/blog/2017/05/20/automation-editor-zwave-panel-ocr/index.html @@ -296,6 +296,9 @@ If you have a security key set in your Open Z-Wave

Recent Posts

diff --git a/blog/2017/06/02/home-assistant-podcast-1/index.html b/blog/2017/06/02/home-assistant-podcast-1/index.html index c368789bc9..e734a754c0 100644 --- a/blog/2017/06/02/home-assistant-podcast-1/index.html +++ b/blog/2017/06/02/home-assistant-podcast-1/index.html @@ -139,6 +139,9 @@

Recent Posts

diff --git a/blog/2017/06/04/release-46/index.html b/blog/2017/06/04/release-46/index.html index 0e3c611d4a..5397b89b95 100644 --- a/blog/2017/06/04/release-46/index.html +++ b/blog/2017/06/04/release-46/index.html @@ -282,6 +282,9 @@

Recent Posts

diff --git a/blog/2017/06/10/interview-with-jupiter-broadcasting/index.html b/blog/2017/06/10/interview-with-jupiter-broadcasting/index.html index 7bddbcd137..347fee8229 100644 --- a/blog/2017/06/10/interview-with-jupiter-broadcasting/index.html +++ b/blog/2017/06/10/interview-with-jupiter-broadcasting/index.html @@ -138,6 +138,9 @@

Recent Posts

diff --git a/blog/2017/06/15/zwave-entity-ids/index.html b/blog/2017/06/15/zwave-entity-ids/index.html index 9e0ea889b0..5f0b588271 100644 --- a/blog/2017/06/15/zwave-entity-ids/index.html +++ b/blog/2017/06/15/zwave-entity-ids/index.html @@ -138,6 +138,9 @@

Recent Posts

diff --git a/blog/2017/06/17/release-47/index.html b/blog/2017/06/17/release-47/index.html index 139245e029..b3d4046248 100644 --- a/blog/2017/06/17/release-47/index.html +++ b/blog/2017/06/17/release-47/index.html @@ -379,6 +379,9 @@ trigger:

Recent Posts

diff --git a/blog/2017/06/20/things-you-should-know-about-senic-covi/index.html b/blog/2017/06/20/things-you-should-know-about-senic-covi/index.html index 0be26a5f4a..542f1d32fc 100644 --- a/blog/2017/06/20/things-you-should-know-about-senic-covi/index.html +++ b/blog/2017/06/20/things-you-should-know-about-senic-covi/index.html @@ -162,6 +162,9 @@ Core Developer, Home Assistant

Recent Posts

diff --git a/blog/2017/07/02/release-48/index.html b/blog/2017/07/02/release-48/index.html index 98ea55abd6..c9239478d0 100644 --- a/blog/2017/07/02/release-48/index.html +++ b/blog/2017/07/02/release-48/index.html @@ -349,6 +349,9 @@

Recent Posts

diff --git a/blog/2017/07/03/home-assistant-is-moving-to-discord/index.html b/blog/2017/07/03/home-assistant-is-moving-to-discord/index.html index 6729f612a1..0b8d8dd637 100644 --- a/blog/2017/07/03/home-assistant-is-moving-to-discord/index.html +++ b/blog/2017/07/03/home-assistant-is-moving-to-discord/index.html @@ -185,6 +185,9 @@ Community Leader, Home Assistant

Recent Posts

diff --git a/blog/2017/07/05/hasspodcast-ep-3/index.html b/blog/2017/07/05/hasspodcast-ep-3/index.html index 2b4823ff68..8d2e1c5f5d 100644 --- a/blog/2017/07/05/hasspodcast-ep-3/index.html +++ b/blog/2017/07/05/hasspodcast-ep-3/index.html @@ -136,6 +136,9 @@

Recent Posts

diff --git a/blog/2017/07/15/release-49/index.html b/blog/2017/07/15/release-49/index.html index dcbd2f75b2..775efae118 100644 --- a/blog/2017/07/15/release-49/index.html +++ b/blog/2017/07/15/release-49/index.html @@ -335,6 +335,9 @@ Screenshot of a green dashboard

Recent Posts

diff --git a/blog/2017/07/17/hasspodcast-ep-4/index.html b/blog/2017/07/17/hasspodcast-ep-4/index.html index 06ae011b3a..0044d15046 100644 --- a/blog/2017/07/17/hasspodcast-ep-4/index.html +++ b/blog/2017/07/17/hasspodcast-ep-4/index.html @@ -136,6 +136,9 @@

Recent Posts

diff --git a/blog/2017/07/25/introducing-hassio/index.html b/blog/2017/07/25/introducing-hassio/index.html index 5fd0e46071..99ba2d5724 100644 --- a/blog/2017/07/25/introducing-hassio/index.html +++ b/blog/2017/07/25/introducing-hassio/index.html @@ -170,6 +170,9 @@ Hass.io dashboard

Recent Posts

diff --git a/blog/2017/07/27/talk-python-podcast/index.html b/blog/2017/07/27/talk-python-podcast/index.html index 7a945416c0..890d655854 100644 --- a/blog/2017/07/27/talk-python-podcast/index.html +++ b/blog/2017/07/27/talk-python-podcast/index.html @@ -139,6 +139,9 @@

Recent Posts

diff --git a/blog/2017/07/29/release-50/index.html b/blog/2017/07/29/release-50/index.html index bdb4c95beb..9ff7335aae 100644 --- a/blog/2017/07/29/release-50/index.html +++ b/blog/2017/07/29/release-50/index.html @@ -307,6 +307,9 @@

Recent Posts

diff --git a/blog/2017/08/01/hasspodcast-ep-5/index.html b/blog/2017/08/01/hasspodcast-ep-5/index.html index 423b9a58e4..a496810425 100644 --- a/blog/2017/08/01/hasspodcast-ep-5/index.html +++ b/blog/2017/08/01/hasspodcast-ep-5/index.html @@ -137,6 +137,9 @@

Recent Posts

diff --git a/blog/2017/08/12/release-51/index.html b/blog/2017/08/12/release-51/index.html index c18a46ff3c..5e73e47d1e 100644 --- a/blog/2017/08/12/release-51/index.html +++ b/blog/2017/08/12/release-51/index.html @@ -304,6 +304,9 @@

Recent Posts

diff --git a/blog/2017/08/26/release-0-52/index.html b/blog/2017/08/26/release-0-52/index.html index d5cd0ca9c5..cc27520295 100644 --- a/blog/2017/08/26/release-0-52/index.html +++ b/blog/2017/08/26/release-0-52/index.html @@ -293,6 +293,9 @@

Recent Posts

diff --git a/blog/2017/09/09/release-53/index.html b/blog/2017/09/09/release-53/index.html index 6b905832d0..f4d02e3f6d 100644 --- a/blog/2017/09/09/release-53/index.html +++ b/blog/2017/09/09/release-53/index.html @@ -317,6 +317,9 @@ Screenshot of the new customize editor.

Recent Posts

diff --git a/blog/2017/09/16/hassbian-1.3-a-bit-of-a-stretch/index.html b/blog/2017/09/16/hassbian-1.3-a-bit-of-a-stretch/index.html index 95107b22ba..da85cbfaa7 100644 --- a/blog/2017/09/16/hassbian-1.3-a-bit-of-a-stretch/index.html +++ b/blog/2017/09/16/hassbian-1.3-a-bit-of-a-stretch/index.html @@ -146,6 +146,9 @@ Other than that the changes are mostly to our tool

Recent Posts

diff --git a/blog/2017/09/23/release-54/index.html b/blog/2017/09/23/release-54/index.html index 9733ce5520..4ae6c780ab 100644 --- a/blog/2017/09/23/release-54/index.html +++ b/blog/2017/09/23/release-54/index.html @@ -252,6 +252,9 @@

Recent Posts

diff --git a/blog/2017/09/26/new-hassio-build-system/index.html b/blog/2017/09/26/new-hassio-build-system/index.html index c41c2b49e8..e80cafb171 100644 --- a/blog/2017/09/26/new-hassio-build-system/index.html +++ b/blog/2017/09/26/new-hassio-build-system/index.html @@ -156,6 +156,9 @@ FROM $BUILD_FROM

Recent Posts

diff --git a/blog/2017/09/27/effortless-encryption-with-lets-encrypt-and-duckdns/index.html b/blog/2017/09/27/effortless-encryption-with-lets-encrypt-and-duckdns/index.html index 119c050c6e..01deda4258 100644 --- a/blog/2017/09/27/effortless-encryption-with-lets-encrypt-and-duckdns/index.html +++ b/blog/2017/09/27/effortless-encryption-with-lets-encrypt-and-duckdns/index.html @@ -159,6 +159,9 @@

Recent Posts

diff --git a/blog/2017/09/29/hacktoberfest/index.html b/blog/2017/09/29/hacktoberfest/index.html index ac16cfddd5..9c18977e38 100644 --- a/blog/2017/09/29/hacktoberfest/index.html +++ b/blog/2017/09/29/hacktoberfest/index.html @@ -153,6 +153,9 @@

Recent Posts

diff --git a/blog/2017/10/01/hass-podcast-ep9/index.html b/blog/2017/10/01/hass-podcast-ep9/index.html index 2b53aaebb3..1921ad4c7f 100644 --- a/blog/2017/10/01/hass-podcast-ep9/index.html +++ b/blog/2017/10/01/hass-podcast-ep9/index.html @@ -138,6 +138,9 @@

Recent Posts

diff --git a/blog/2017/10/06/deprecating-python-3.4-support/index.html b/blog/2017/10/06/deprecating-python-3.4-support/index.html index 55af634b5b..8e571835cf 100644 --- a/blog/2017/10/06/deprecating-python-3.4-support/index.html +++ b/blog/2017/10/06/deprecating-python-3.4-support/index.html @@ -148,6 +148,9 @@ Home Assistant 0.64 will be the last release to support Python 3.4. Starting wit

Recent Posts

diff --git a/blog/2017/10/07/release-55/index.html b/blog/2017/10/07/release-55/index.html index a0b8dc41a9..9e1a537ad7 100644 --- a/blog/2017/10/07/release-55/index.html +++ b/blog/2017/10/07/release-55/index.html @@ -279,6 +279,9 @@

Recent Posts

diff --git a/blog/2017/10/15/templating-date-time/index.html b/blog/2017/10/15/templating-date-time/index.html index f1ad2594f8..42cec9beef 100644 --- a/blog/2017/10/15/templating-date-time/index.html +++ b/blog/2017/10/15/templating-date-time/index.html @@ -153,6 +153,9 @@

Recent Posts

diff --git a/blog/2017/10/18/hasspodcast-ep-10/index.html b/blog/2017/10/18/hasspodcast-ep-10/index.html index 0d1323e23b..1141d745bd 100644 --- a/blog/2017/10/18/hasspodcast-ep-10/index.html +++ b/blog/2017/10/18/hasspodcast-ep-10/index.html @@ -136,6 +136,9 @@

Recent Posts

diff --git a/blog/2017/10/21/release-56/index.html b/blog/2017/10/21/release-56/index.html index 8d3eace5c4..aa7f79f123 100644 --- a/blog/2017/10/21/release-56/index.html +++ b/blog/2017/10/21/release-56/index.html @@ -334,6 +334,9 @@

Recent Posts

diff --git a/blog/2017/10/23/simple-analog-sensor/index.html b/blog/2017/10/23/simple-analog-sensor/index.html index 4072d06704..43dd6515a4 100644 --- a/blog/2017/10/23/simple-analog-sensor/index.html +++ b/blog/2017/10/23/simple-analog-sensor/index.html @@ -212,6 +212,9 @@

Recent Posts

diff --git a/blog/2017/10/28/demo/index.html b/blog/2017/10/28/demo/index.html index 4add4368a6..c4b5a7abe0 100644 --- a/blog/2017/10/28/demo/index.html +++ b/blog/2017/10/28/demo/index.html @@ -204,6 +204,9 @@ Demo is running... -> CTRL + C to shutdown

Recent Posts

diff --git a/blog/2017/11/02/secure-shell-tunnel/index.html b/blog/2017/11/02/secure-shell-tunnel/index.html index 625a98cdd8..bb66e167f5 100644 --- a/blog/2017/11/02/secure-shell-tunnel/index.html +++ b/blog/2017/11/02/secure-shell-tunnel/index.html @@ -179,6 +179,9 @@ Last login: Fri Oct 27 17:50:09 2017

Recent Posts

diff --git a/blog/2017/11/04/release-57/index.html b/blog/2017/11/04/release-57/index.html index d6e70b194d..891478eae5 100644 --- a/blog/2017/11/04/release-57/index.html +++ b/blog/2017/11/04/release-57/index.html @@ -384,6 +384,9 @@ The Home Assistant sidebar in 12 different languages.

Recent Posts

diff --git a/blog/2017/11/05/frontend-translations/index.html b/blog/2017/11/05/frontend-translations/index.html index 8221735602..379718edb1 100644 --- a/blog/2017/11/05/frontend-translations/index.html +++ b/blog/2017/11/05/frontend-translations/index.html @@ -141,6 +141,9 @@ The Home Assistant sidebar in 12 different languages.

Recent Posts

diff --git a/blog/2017/11/10/ttn-with-mqtt/index.html b/blog/2017/11/10/ttn-with-mqtt/index.html index bf0b85f2d6..fce600e14f 100644 --- a/blog/2017/11/10/ttn-with-mqtt/index.html +++ b/blog/2017/11/10/ttn-with-mqtt/index.html @@ -300,6 +300,9 @@

Recent Posts

diff --git a/blog/2017/11/12/tor/index.html b/blog/2017/11/12/tor/index.html index ca24a752dc..81ec45171b 100644 --- a/blog/2017/11/12/tor/index.html +++ b/blog/2017/11/12/tor/index.html @@ -207,6 +207,9 @@ INFO: -----------------------------------------------------------

Recent Posts

diff --git a/blog/2017/11/18/release-58/index.html b/blog/2017/11/18/release-58/index.html index 5fdb5cd9c3..2ee5927fb6 100644 --- a/blog/2017/11/18/release-58/index.html +++ b/blog/2017/11/18/release-58/index.html @@ -305,6 +305,9 @@ For Custom UI users: your custom UI will need to be updated before it can work w

Recent Posts

diff --git a/blog/2017/11/29/hassio-virtual-machine/index.html b/blog/2017/11/29/hassio-virtual-machine/index.html index 35dbf36ebc..9f3ebbb875 100644 --- a/blog/2017/11/29/hassio-virtual-machine/index.html +++ b/blog/2017/11/29/hassio-virtual-machine/index.html @@ -242,6 +242,9 @@ ada5bbfc74f0 homeassistant/qemux86-64-homeassistant "/

Recent Posts

diff --git a/blog/2017/12/03/release-59/index.html b/blog/2017/12/03/release-59/index.html index b1a19e39f2..b0a89d14a8 100644 --- a/blog/2017/12/03/release-59/index.html +++ b/blog/2017/12/03/release-59/index.html @@ -289,6 +289,9 @@

Recent Posts

diff --git a/blog/2017/12/17/introducing-home-assistant-cloud/index.html b/blog/2017/12/17/introducing-home-assistant-cloud/index.html index 2213fc3283..d6e1fa02c6 100644 --- a/blog/2017/12/17/introducing-home-assistant-cloud/index.html +++ b/blog/2017/12/17/introducing-home-assistant-cloud/index.html @@ -190,6 +190,9 @@

Recent Posts

diff --git a/blog/2017/12/17/release-60/index.html b/blog/2017/12/17/release-60/index.html index d917cf1d70..d9f03d21ef 100644 --- a/blog/2017/12/17/release-60/index.html +++ b/blog/2017/12/17/release-60/index.html @@ -275,6 +275,9 @@

Recent Posts

diff --git a/blog/2017/12/28/thank-you/index.html b/blog/2017/12/28/thank-you/index.html index 8618e4f36a..d490e6d8c2 100644 --- a/blog/2017/12/28/thank-you/index.html +++ b/blog/2017/12/28/thank-you/index.html @@ -143,6 +143,9 @@

Recent Posts

diff --git a/blog/2018/01/14/release-61/index.html b/blog/2018/01/14/release-61/index.html index a49b793631..d6b9ec87c5 100644 --- a/blog/2018/01/14/release-61/index.html +++ b/blog/2018/01/14/release-61/index.html @@ -485,6 +485,9 @@ Note however, that this feature was replaced by a new ignore_string config optio

Recent Posts

diff --git a/blog/2018/01/21/clarification-emulated-hue/index.html b/blog/2018/01/21/clarification-emulated-hue/index.html index 75419f7ec5..dd85092098 100644 --- a/blog/2018/01/21/clarification-emulated-hue/index.html +++ b/blog/2018/01/21/clarification-emulated-hue/index.html @@ -148,6 +148,9 @@

Recent Posts

diff --git a/blog/2018/01/27/release-62/index.html b/blog/2018/01/27/release-62/index.html index bf4db86a0a..66845c462b 100644 --- a/blog/2018/01/27/release-62/index.html +++ b/blog/2018/01/27/release-62/index.html @@ -299,6 +299,9 @@

Recent Posts

    +
  • + 0.65: Rename entities, new filter sensor, UpCloud and Channels +
  • 0.64: Over 1000 integrations! New: HomeKit, BMW, August.
  • diff --git a/blog/2018/02/09/disabling-disqus/index.html b/blog/2018/02/09/disabling-disqus/index.html index 1844c2a4eb..85ec8f0cf3 100644 --- a/blog/2018/02/09/disabling-disqus/index.html +++ b/blog/2018/02/09/disabling-disqus/index.html @@ -138,6 +138,9 @@

    Recent Posts

    diff --git a/blog/2018/02/10/release-63/index.html b/blog/2018/02/10/release-63/index.html index 60017db893..2278fd792c 100644 --- a/blog/2018/02/10/release-63/index.html +++ b/blog/2018/02/10/release-63/index.html @@ -455,6 +455,9 @@

    Recent Posts

    diff --git a/blog/2018/02/19/cloud-update/index.html b/blog/2018/02/19/cloud-update/index.html index 1a3e4544c3..d98fd59614 100644 --- a/blog/2018/02/19/cloud-update/index.html +++ b/blog/2018/02/19/cloud-update/index.html @@ -137,6 +137,9 @@

    Recent Posts

    diff --git a/blog/2018/02/26/release-64/index.html b/blog/2018/02/26/release-64/index.html index 7673f95e0c..919b524134 100644 --- a/blog/2018/02/26/release-64/index.html +++ b/blog/2018/02/26/release-64/index.html @@ -375,6 +375,9 @@

    Recent Posts

    diff --git a/blog/2018/03/09/release-65/index.html b/blog/2018/03/09/release-65/index.html new file mode 100644 index 0000000000..499a6c3adf --- /dev/null +++ b/blog/2018/03/09/release-65/index.html @@ -0,0 +1,442 @@ + + + + + + + + + 0.65: Rename entities, new filter sensor, UpCloud and Channels - Home Assistant + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    +

    0.65: Rename entities, new filter sensor, UpCloud and Channels

    +
    + + + 18 minutes reading time + + +
      +
    • Release-Notes
    • +
    +
    + Comments +
    +
    +

    +

    Release 0.65 has arrived and oh boy, is it awesome. First off, in case you have missed the previous release notes and announcements: Starting with this release, Home Assistant has dropped support for Python 3.4. The minimum supported version is now Python 3.5.3. If you are on Hass.io or Docker, you’ll automatically be running the latest and greatest. If you’re on an older Hassbian installation or did your own Linux setup you’ll need to upgrade to at least Python 3.5.3.

    +

    Naming entities

    +

    With the introduction of the entity registry in 0.63, Home Assistant is making sure that the same devices always receive the same entity IDs. This release is taking it a step further by allowing users to change the name of a device from the frontend. Changing the name will be instantly applied and overrides whatever name the device is given by the integration. If you want to switch back to the name from the integration, set the name to blank.

    +

    This feature is, just like the entity registry, only available for integrations that provide unique IDs for their entities. Adding this to each integration is still a work in progress.

    +

    + Screencap of interaction with the UI to override the name of a light. + The new entity registry settings page in action. +

    +

    Filter sensor

    +

    The filter sensor is a new 2nd order sensor by @dgomes: it will consume data from a sensor entity and apply filters to it. For the initial implementation it comes with Low-pass, Outlier and Throttle filters. Expect more to be added in the future.

    +
    sensor:
    +  - platform: filter
    +    name: "filtered realistic humidity"
    +    entity_id: sensor.realistic_humidity
    +    filters:
    +      - filter: outlier
    +        window_size: 4
    +        radius: 4.0
    +      - filter: lowpass
    +        time_constant: 10
    +        precision: 2
    +
    +
    +

    + Chart showing a humidity sensor with a lot of spikes and a smooth graph produced by the new filter sensor. + Graph showing both the input sensor and the output of the filter sensor. +

    +

    Light Group

    +

    We have had some discussion lately and realized that our current group component is very limiting. Extending it would probably lead to more confusion so we’ve decided to take a new approach: groups that are designed to be part of a specific component. The first one in this series comes at the hand of @OttoWinter: the group light (docs).

    +

    The group light creates a single light inside Home Assistant that is representing a group of lights. All commands will be forwarded and the state is a combination of all the lights.

    +
    light:
    +  - platform: group
    +    name: Cool Light Group
    +    entities:
    +      - light.amazing_light
    +      - light.foobar
    +      - light.sun
    +
    +
    +

    HomeKit

    +

    HomeKit got some more upgrades. We’ve added support for temperature sensors in Fahrenheit, alarm systems, switches and thermostats. Just a few releases more and we should be able to cover it all.

    +

    Optional words for the Conversation component

    +

    The conversation component has always been a great introduction to controlling your house by voice. There is no hotword detection or powerful language engine behind it, but it gives a great intro to what is possible. Starting with this release, it will get a little bit more powerful with the introduction of optional words. To mark a word optional, wrap it in square brackets: Change the light to [the color] {color}.

    +
    # Example configuration.yaml entry
    +conversation:
    +  intents:
    +    LivingRoomTemperature:
    +     - What is the temperature in the living room
    +     - What is [the] living room temperature
    +
    +intent_script:
    +  LivingRoomTemperature:
    +    speech:
    +      text: It is currently  degrees in the living room.
    +
    +
    +

    + Screenshot of the frontend with the conversation panel open. + Have conversations with Home Assistant via the conversation component. +

    +

    New Platforms

    + +

    If you need help…

    +

    …don’t hesitate to use our very active forums or join us for a little chat. The release notes have comments enabled but it’s preferred if you use the former communication channels. Thanks.

    +

    Reporting Issues

    +

    Experiencing issues introduced by this release? Please report them in our issue tracker. Make sure to fill in all fields of the issue template.

    + +

    Breaking Changes

    + +

    All changes

    + +
    +
    +
    + +
    + +
    +
    + + + + + + + diff --git a/blog/archives/index.html b/blog/archives/index.html index 156a4a7af0..db4a93a70b 100644 --- a/blog/archives/index.html +++ b/blog/archives/index.html @@ -3755,6 +3755,27 @@
    + + + @@ -3795,6 +3816,9 @@

    Recent Posts

    diff --git a/blog/categories/announcements/atom.xml b/blog/categories/announcements/atom.xml index 18435bc8c3..d78b32eb2d 100644 --- a/blog/categories/announcements/atom.xml +++ b/blog/categories/announcements/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Announcements | Home Assistant]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/announcements/index.html b/blog/categories/announcements/index.html index d8478d9f2b..26184aad64 100644 --- a/blog/categories/announcements/index.html +++ b/blog/categories/announcements/index.html @@ -178,6 +178,9 @@

    Recent Posts

    diff --git a/blog/categories/cloud/atom.xml b/blog/categories/cloud/atom.xml index 82ed9e4949..5ecb1a8a3c 100644 --- a/blog/categories/cloud/atom.xml +++ b/blog/categories/cloud/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Cloud | Home Assistant]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/cloud/index.html b/blog/categories/cloud/index.html index 705bef021c..b01989b460 100644 --- a/blog/categories/cloud/index.html +++ b/blog/categories/cloud/index.html @@ -136,6 +136,9 @@

    Recent Posts

    diff --git a/blog/categories/community/atom.xml b/blog/categories/community/atom.xml index a604e6cb72..2fbb7ab016 100644 --- a/blog/categories/community/atom.xml +++ b/blog/categories/community/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Community | Home Assistant]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/community/index.html b/blog/categories/community/index.html index 9d23f07ef7..e29932eb4f 100644 --- a/blog/categories/community/index.html +++ b/blog/categories/community/index.html @@ -500,6 +500,9 @@

    Recent Posts

    diff --git a/blog/categories/device-tracking/atom.xml b/blog/categories/device-tracking/atom.xml index 6a1fe2d5de..0d5a7c7c64 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]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/device-tracking/index.html b/blog/categories/device-tracking/index.html index 1e89436539..b8057d22a2 100644 --- a/blog/categories/device-tracking/index.html +++ b/blog/categories/device-tracking/index.html @@ -138,6 +138,9 @@

    Recent Posts

    diff --git a/blog/categories/esp8266/atom.xml b/blog/categories/esp8266/atom.xml index cbbd253266..67de746c39 100644 --- a/blog/categories/esp8266/atom.xml +++ b/blog/categories/esp8266/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: ESP8266 | Home Assistant]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/esp8266/index.html b/blog/categories/esp8266/index.html index 65c99bbe3d..a84ebd1439 100644 --- a/blog/categories/esp8266/index.html +++ b/blog/categories/esp8266/index.html @@ -186,6 +186,9 @@

    Recent Posts

    diff --git a/blog/categories/how-to/atom.xml b/blog/categories/how-to/atom.xml index cf4ec20f07..f87176eb05 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]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/how-to/index.html b/blog/categories/how-to/index.html index 1d8f4193d9..ae46b522a4 100644 --- a/blog/categories/how-to/index.html +++ b/blog/categories/how-to/index.html @@ -760,6 +760,9 @@

    Recent Posts

    diff --git a/blog/categories/ibeacons/atom.xml b/blog/categories/ibeacons/atom.xml index 2c21aa00af..fff8df66e4 100644 --- a/blog/categories/ibeacons/atom.xml +++ b/blog/categories/ibeacons/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: iBeacons | Home Assistant]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/ibeacons/index.html b/blog/categories/ibeacons/index.html index 5cd99828e7..531e5f3c00 100644 --- a/blog/categories/ibeacons/index.html +++ b/blog/categories/ibeacons/index.html @@ -161,6 +161,9 @@

    Recent Posts

    diff --git a/blog/categories/internet-of-things/atom.xml b/blog/categories/internet-of-things/atom.xml index eecc9e9700..0935f7aa31 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]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/internet-of-things/index.html b/blog/categories/internet-of-things/index.html index d0780103d3..234d390bbb 100644 --- a/blog/categories/internet-of-things/index.html +++ b/blog/categories/internet-of-things/index.html @@ -222,6 +222,9 @@

    Recent Posts

    diff --git a/blog/categories/iot-data/atom.xml b/blog/categories/iot-data/atom.xml index 8223ba3c92..628a5f1d7d 100644 --- a/blog/categories/iot-data/atom.xml +++ b/blog/categories/iot-data/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: IoT-Data | Home Assistant]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/iot-data/index.html b/blog/categories/iot-data/index.html index db06129dcf..306def147e 100644 --- a/blog/categories/iot-data/index.html +++ b/blog/categories/iot-data/index.html @@ -181,6 +181,9 @@

    Recent Posts

    diff --git a/blog/categories/media/atom.xml b/blog/categories/media/atom.xml index f88c673b0b..6564b84bce 100644 --- a/blog/categories/media/atom.xml +++ b/blog/categories/media/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Media | Home Assistant]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/media/index.html b/blog/categories/media/index.html index 823bf2e5ae..bae78995bd 100644 --- a/blog/categories/media/index.html +++ b/blog/categories/media/index.html @@ -325,6 +325,9 @@

    Recent Posts

    diff --git a/blog/categories/merchandise/atom.xml b/blog/categories/merchandise/atom.xml index f263cdbba2..25cc415a09 100644 --- a/blog/categories/merchandise/atom.xml +++ b/blog/categories/merchandise/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Merchandise | Home Assistant]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/merchandise/index.html b/blog/categories/merchandise/index.html index 9c9f7185d7..a7ba5a82be 100644 --- a/blog/categories/merchandise/index.html +++ b/blog/categories/merchandise/index.html @@ -136,6 +136,9 @@

    Recent Posts

    diff --git a/blog/categories/micropython/atom.xml b/blog/categories/micropython/atom.xml index d313608436..6a621cc370 100644 --- a/blog/categories/micropython/atom.xml +++ b/blog/categories/micropython/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Micropython | Home Assistant]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/micropython/index.html b/blog/categories/micropython/index.html index 62cd323559..1a6042d0c9 100644 --- a/blog/categories/micropython/index.html +++ b/blog/categories/micropython/index.html @@ -185,6 +185,9 @@

    Recent Posts

    diff --git a/blog/categories/mqtt/atom.xml b/blog/categories/mqtt/atom.xml index 2288ff2f96..59fd2fa855 100644 --- a/blog/categories/mqtt/atom.xml +++ b/blog/categories/mqtt/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: MQTT | Home Assistant]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/mqtt/index.html b/blog/categories/mqtt/index.html index dd89227a26..2a572b4067 100644 --- a/blog/categories/mqtt/index.html +++ b/blog/categories/mqtt/index.html @@ -207,6 +207,9 @@

    Recent Posts

    diff --git a/blog/categories/organization/atom.xml b/blog/categories/organization/atom.xml index af9861d575..94d6ca8505 100644 --- a/blog/categories/organization/atom.xml +++ b/blog/categories/organization/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Organization | Home Assistant]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/organization/index.html b/blog/categories/organization/index.html index b2ef7e7fe2..5d74757d91 100644 --- a/blog/categories/organization/index.html +++ b/blog/categories/organization/index.html @@ -201,6 +201,9 @@

    Recent Posts

    diff --git a/blog/categories/owntracks/atom.xml b/blog/categories/owntracks/atom.xml index 23bab2543f..0da6ec7342 100644 --- a/blog/categories/owntracks/atom.xml +++ b/blog/categories/owntracks/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: OwnTracks | Home Assistant]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/owntracks/index.html b/blog/categories/owntracks/index.html index e1866c28cb..58d0ba4547 100644 --- a/blog/categories/owntracks/index.html +++ b/blog/categories/owntracks/index.html @@ -161,6 +161,9 @@

    Recent Posts

    diff --git a/blog/categories/presence-detection/atom.xml b/blog/categories/presence-detection/atom.xml index 9f2b944c9b..dd0ef9b118 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]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/presence-detection/index.html b/blog/categories/presence-detection/index.html index d5cbe0c0b6..027d5964fc 100644 --- a/blog/categories/presence-detection/index.html +++ b/blog/categories/presence-detection/index.html @@ -138,6 +138,9 @@

    Recent Posts

    diff --git a/blog/categories/public-service-announcement/atom.xml b/blog/categories/public-service-announcement/atom.xml index 355b6ded7c..3fc5706445 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]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/public-service-announcement/index.html b/blog/categories/public-service-announcement/index.html index 62cee2bbe8..b04765a3d3 100644 --- a/blog/categories/public-service-announcement/index.html +++ b/blog/categories/public-service-announcement/index.html @@ -180,6 +180,9 @@

    Recent Posts

    diff --git a/blog/categories/release-notes/atom.xml b/blog/categories/release-notes/atom.xml index 8e20b3bdbc..946e488874 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]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ @@ -13,6 +13,605 @@ Octopress + + <![CDATA[0.65: Rename entities, new filter sensor, UpCloud and Channels]]> + + 2018-03-09T00:01:00+00:00 + https://home-assistant.io/blog/2018/03/09/release-65 + + +Release 0.65 has arrived and oh boy, is it awesome. First off, in case you have missed the previous release notes and [announcements](https://home-assistant.io/blog/2017/10/06/deprecating-python-3.4-support/): **Starting with this release, Home Assistant has dropped support for Python 3.4. The minimum supported version is now Python 3.5.3.** If you are on Hass.io or Docker, you'll automatically be running the latest and greatest. If you're on an older Hassbian installation or did your own Linux setup you'll need to upgrade to at least Python 3.5.3. + +## Naming entities + +With the introduction of the entity registry in 0.63, Home Assistant is making sure that the same devices always receive the same entity IDs. This release is taking it a step further by allowing users to change the name of a device from the frontend. Changing the name will be instantly applied and overrides whatever name the device is given by the integration. If you want to switch back to the name from the integration, set the name to blank. + +_This feature is, just like the entity registry, only available for integrations that provide unique IDs for their entities. Adding this to each integration is still a work in progress._ + +

    + Screencap of interaction with the UI to override the name of a light. + The new entity registry settings page in action. +

    + +## Filter sensor + +The [filter sensor][sensor.filter docs] is a new 2nd order sensor by [@dgomes]: it will consume data from a sensor entity and apply filters to it. For the initial implementation it comes with Low-pass, Outlier and Throttle filters. Expect more to be added in the future. + +```yaml +sensor: + - platform: filter + name: "filtered realistic humidity" + entity_id: sensor.realistic_humidity + filters: + - filter: outlier + window_size: 4 + radius: 4.0 + - filter: lowpass + time_constant: 10 + precision: 2 +``` + +

    + Chart showing a humidity sensor with a lot of spikes and a smooth graph produced by the new filter sensor. + Graph showing both the input sensor and the output of the filter sensor. +

    + +## Light Group + +We have had some discussion lately and realized that our current group component is very limiting. Extending it would probably lead to more confusion so we've decided to take a new approach: groups that are designed to be part of a specific component. The first one in this series comes at the hand of [@OttoWinter]: the group light ([docs][light.group docs]). + +The group light creates a single light inside Home Assistant that is representing a group of lights. All commands will be forwarded and the state is a combination of all the lights. + +```yaml +light: + - platform: group + name: Cool Light Group + entities: + - light.amazing_light + - light.foobar + - light.sun +``` + +## HomeKit + +HomeKit got some more upgrades. We've added support for temperature sensors in Fahrenheit, alarm systems, switches and thermostats. Just a few releases more and we should be able to cover it all. + +## Optional words for the Conversation component + +The [conversation component](/components/conversation/) has always been a great introduction to controlling your house by voice. There is no hotword detection or powerful language engine behind it, but it gives a great intro to what is possible. Starting with this release, it will get a little bit more powerful with the introduction of optional words. To mark a word optional, wrap it in square brackets: `Change the light to [the color] {color}`. + +```yaml +# Example configuration.yaml entry +conversation: + intents: + LivingRoomTemperature: + - What is the temperature in the living room + - What is [the] living room temperature + +intent_script: + LivingRoomTemperature: + speech: + text: It is currently degrees in the living room. +``` + +

    + Screenshot of the frontend with the conversation panel open. + Have conversations with Home Assistant via the conversation component. +

    + +## New Platforms + +- Synology Chat as a notification platform ([@cmsimike] - [#12596]) ([notify.synology_chat docs]) (new-platform) +- KNX Component: Scene support and expose sensor values ([@Julius2342] - [#11978]) ([knx docs]) ([scene docs]) ([binary_sensor.knx docs]) (new-platform) +- Adds simulated sensor ([@robmarkcole] - [#12539]) ([sensor.simulated docs]) (new-platform) +- Add Songpal ("Sony Audio Control API") platform ([@rytilahti] - [#12143]) ([media_player.songpal docs]) (new-platform) +- Add UpCloud platform ([@scop] - [#12011]) ([upcloud docs]) ([binary_sensor.upcloud docs]) ([switch.upcloud docs]) (new-platform) +- Added Sense energy monitor sensor ([@kbickar] - [#11580]) ([sensor.sense docs]) (new-platform) +- Filter Sensor ([@dgomes] - [#12650]) ([sensor.filter docs]) (new-platform) +- Add light.group platform ([@OttoWinter] - [#12229]) ([light.group docs]) (new-platform) +- Egardia redesign - generic component and sensor support ([@jeroenterheerdt] - [#11994]) ([egardia docs]) ([alarm_control_panel.egardia docs]) ([binary_sensor.egardia docs]) (breaking change) (new-platform) +- Add support for Zillow Zestimate sensor ([@jcconnell] - [#12597]) ([sensor.zestimate docs]) (new-platform) +- Add a Media Player Component for Channels ([@maddox] - [#12937]) ([media_player.channels docs]) (new-platform) +- Add support for alarm system, switch and thermostat to homekit ([@maxclaey] - [#12819]) ([homekit docs]) (new-platform) +- Add camera proxy ([@PhracturedBlue] - [#12006]) ([camera.proxy docs]) (new-platform) + +## If you need help... + +...don't hesitate to use our very active [forums](https://community.home-assistant.io/) or join us for a little [chat](https://discord.gg/c5DvZ4e). The release notes have comments enabled but it's preferred if you use the former communication channels. Thanks. + +## Reporting Issues + +Experiencing issues introduced by this release? Please report them in our [issue tracker](https://github.com/home-assistant/home-assistant/issues). Make sure to fill in all fields of the issue template. + + +## Breaking Changes + +- Insteon PLM: If you have created platform overrides in your configuration.yaml file to change a your INSTEON device to map to a different Home Assistant platform, that mapping will no longer be in effect. Please see the new device override capabilities in the [insteon_plm documentation](https://home-assistant.io/components/insteon_plm/). ([@teharris1] - [#12534]) ([insteon_plm docs]) ([binary_sensor.insteon_plm docs]) ([fan.insteon_plm docs]) ([light.insteon_plm docs]) ([sensor.insteon_plm docs]) ([switch.insteon_plm docs]) (breaking change) +- AirVisual's air index unit is AQI (Air Quality Index), not PSI (Pressure per Square Inch). ([@chilicheech] - [#12730]) ([sensor.airvisual docs]) (breaking change) +- TekSavvy Sensor: The sensor entity id for peak upload usage used to be `sensor.teksavvy_on_peak_upload_` this has been changed to `sensor.teksavvy_on_peak_upload`. The `usage` title was shared between and therefore indeterminate between GB and % usage. Therefore % usage entity ID has been changed to `sensor.teksavvy_usage_ratio` ([@mikeodr] - [#12325]) ([sensor.teksavvy docs]) (breaking change) +- Egardia redesign - generic component and sensor support ([@jeroenterheerdt] - [#11994]) ([egardia docs]) ([alarm_control_panel.egardia docs]) ([binary_sensor.egardia docs]) (breaking change) (new-platform) +- zip_code for the Pollen integration is now required to have quotes around it to prevent accidental errors: `zip_code: "00544"` ([@bachya] - [#12934]) ([sensor.pollen docs]) (breaking change) +- Google Assistant integration: It is no longer possible to override the domain that Home Assistant uses for an entity. This was bound to go wrong when we would test supported features for different domains. Also removed support for disguising temperature sensors as thermostats. We should follow the traits that Google offer us and not offer things that will only work half. ([@balloob] - [#12959]) ([google_assistant docs]) ([light docs]) (breaking change) +- The LimitlessLED white temperature range has been adjusted and should now match the Mi-Light smartphone app for identical Kelvin values. ([@amelchio] - [#12971]) ([light.limitlessled docs]) (breaking change) + +## All changes + +- Hello Python 3.5 ([@balloob] - [#12610]) +- Fix CODEOWNERS permissions ([@OttoWinter] - [#12621]) +- Xiaomi Aqara Gateway: Service descriptions added ([@syssi] - [#12631]) +- Removing asyncio.coroutine syntax from some components ([@Julius2342] - [#12507]) +- Allow renaming entities in entity registry ([@balloob] - [#12636]) ([config docs]) +- Check if $files is empty, don't try to execute it ([@armills] - [#12651]) +- Removed py34 ([@cdce8p] - [#12648]) +- Improved Homekit tests ([@cdce8p] - [#12647]) ([homekit docs]) +- Removing asyncio.coroutine syntax from HASS core ([@Julius2342] - [#12509]) +- Synology Chat as a notification platform ([@cmsimike] - [#12596]) ([notify.synology_chat docs]) (new-platform) +- Enable pytradfri during build, and include in Docker ([@lwis] - [#12662]) +- Upgrade insteonplm to 0.8.2 (required refactoring) ([@teharris1] - [#12534]) ([insteon_plm docs]) ([binary_sensor.insteon_plm docs]) ([fan.insteon_plm docs]) ([light.insteon_plm docs]) ([sensor.insteon_plm docs]) ([switch.insteon_plm docs]) (breaking change) +- Homekit Update, Support for TempSensor (°F) ([@cdce8p] - [#12676]) ([homekit docs]) +- Fix formatting of minutes for sleep start in the fitbit sensor ([@awkwardDuck] - [#12664]) ([sensor.fitbit docs]) +- KNX Component: Scene support and expose sensor values ([@Julius2342] - [#11978]) ([knx docs]) ([scene docs]) ([binary_sensor.knx docs]) (new-platform) +- Added config validator for future group platforms ([@cdce8p] - [#12592]) +- Adds simulated sensor ([@robmarkcole] - [#12539]) ([sensor.simulated docs]) (new-platform) +- Add history_graph component to demo ([@balloob] - [#12681]) ([demo docs]) +- Next generation of Xiaomi Aqara devices added ([@syssi] - [#12659]) ([xiaomi_aqara docs]) ([switch.xiaomi_aqara docs]) +- Fix homekit: temperature calculation ([@cdce8p] - [#12720]) ([homekit docs]) +- AsusWRT log exceptions ([@kellerza] - [#12668]) ([device_tracker.asuswrt docs]) +- Homekit schema gracefully fail with integer ([@kellerza] - [#12725]) ([homekit docs]) +- Update core HSV color scaling to standard scales: ([@armills] - [#12649]) ([light.hue docs]) ([light.lifx docs]) +- correct air index unit ([@chilicheech] - [#12730]) ([sensor.airvisual docs]) (breaking change) +- Remove automatic sqlite vacuum ([@amelchio] - [#12728]) +- Disable asuswrt tests ([@armills] - [#12663]) +- Fix Citybikes naming ([@aronsky] - [#12661]) ([sensor.citybikes docs]) +- Xiaomi MiIO Light: Flag the device as unavailable if not reachable ([@syssi] - [#12449]) ([light.xiaomi_miio docs]) +- Check_config await error ([@kellerza] - [#12722]) +- Add Songpal ("Sony Audio Control API") platform ([@rytilahti] - [#12143]) ([media_player.songpal docs]) (new-platform) +- Quote services.yaml string ([@amelchio] - [#12763]) +- Intent: Set light color ([@balloob] - [#12633]) ([light docs]) +- Update Yi platform to make use of async/await ([@bachya] - [#12713]) ([camera.yi docs]) +- Add custom header support for rest_command ([@doctorjames] - [#12646]) ([rest_command docs]) +- Round humidity for display purposes ([@PhilRW] - [#12766]) ([climate docs]) ([weather docs]) ([climate.wink docs]) ([weather.darksky docs]) +- Xiaomi MiIO Vacuum: Use a unique data key per domain ([@syssi] - [#12743]) ([vacuum.xiaomi_miio docs]) +- Add UpCloud platform ([@scop] - [#12011]) ([upcloud docs]) ([binary_sensor.upcloud docs]) ([switch.upcloud docs]) (new-platform) +- Add Unit System Option For Fitbit ([@bertbert72] - [#11817]) ([sensor.fitbit docs]) +- Add 'lock' device class ([@swilson] - [#11640]) ([binary_sensor docs]) +- Bump frontend to 20180228.1 ([@balloob] - [#12786]) ([frontend docs]) +- Fix when 2 states match with same name ([@balloob] - [#12771]) +- MQTT Static Typing ([@OttoWinter] - [#12433]) ([mqtt docs]) +- Add "headers" config parameter to rest switch ([@mfrueh] - [#12706]) ([switch.rest docs]) +- Added Sense energy monitor sensor ([@kbickar] - [#11580]) ([sensor.sense docs]) (new-platform) +- TekSavvy Sensor unlimited bandwidth support ([@mikeodr] - [#12325]) ([sensor.teksavvy docs]) (breaking change) +- iCloud location tracking improvements ([@reedriley] - [#12399]) ([device_tracker.icloud docs]) +- Support serving of backend translations ([@armills] - [#12453]) ([frontend docs]) +- Translation cleanup ([@armills] - [#12804]) +- Take ownership of Emby, Eight Sleep, Hikvision ([@mezz64] - [#12803]) +- Bump pyHik version, digest auth, more device support ([@mezz64] - [#12801]) ([binary_sensor.hikvision docs]) +- Only run deploy from lint branch ([@armills] - [#12805]) +- Add optional words to conversation utterances ([@balloob] - [#12772]) ([conversation docs]) +- Changed default from `all` to `changed` ([@cdce8p] - [#12660]) +- Fix flakiness in tests ([@balloob] - [#12806]) +- Tibber: retry if we fail to connect at startup ([@danielhiversen] - [#12620]) ([sensor.tibber docs]) +- Cast Python Async Await Syntax ([@OttoWinter] - [#12816]) ([media_player.cast docs]) +- Filter Sensor ([@dgomes] - [#12650]) ([sensor.filter docs]) (new-platform) +- MQTT Python 3.5 Async Await Syntax ([@OttoWinter] - [#12815]) ([mqtt docs]) +- Improved Homekit tests ([@cdce8p] - [#12800]) ([homekit docs]) +- Add light.group platform ([@OttoWinter] - [#12229]) ([light.group docs]) (new-platform) +- Add icons to Xiaomi Aqara sensors ([@bakedraccoon] - [#12814]) ([sensor.xiaomi_aqara docs]) +- Egardia redesign - generic component and sensor support ([@jeroenterheerdt] - [#11994]) ([egardia docs]) ([alarm_control_panel.egardia docs]) ([binary_sensor.egardia docs]) (breaking change) (new-platform) +- Skip flaky light.group test [skipci] ([@balloob] - [#12847]) +- Update volvooncall.py ([@danielhiversen] - [#12834]) ([switch.volvooncall docs]) +- Address upcloud post-merge comments (#12011) ([@scop] - [#12835]) ([upcloud docs]) ([binary_sensor.upcloud docs]) ([switch.upcloud docs]) +- Keep auto groups during group reload ([@amelchio] - [#12841]) ([group docs]) +- PyXiaomiGateway version bumped. ([@syssi] - [#12828]) ([xiaomi_aqara docs]) +- Fix light group update before add ([@OttoWinter] - [#12844]) ([light.group docs]) +- IndexError (list index out of range) fixed. ([@syssi] - [#12858]) ([sensor.xiaomi_aqara docs]) +- Fix dead Sonos web interface even more ([@amelchio] - [#12851]) ([media_player.sonos docs]) +- Updated to use latest ihcsdk version ([@dingusdk] - [#12865]) ([ihc docs]) +- Add unique id for Tibber sensor ([@danielhiversen] - [#12864]) ([sensor.tibber docs]) +- Add support for Zillow Zestimate sensor ([@jcconnell] - [#12597]) ([sensor.zestimate docs]) (new-platform) +- Grammar fix 'an unique' ([@amelchio] - [#12870]) +- Add SQL index to states.event_id ([@amelchio] - [#12825]) +- Optimize logbook SQL query ([@amelchio] - [#12881]) ([logbook docs]) +- await syntax knx scene ([@Julius2342] - [#12879]) ([scene docs]) +- Fix 0 value when home-assistant restarts ([@bokub] - [#12874]) ([sensor.history_stats docs]) +- Fix aggressive scan intervals ([@balloob] - [#12885]) ([alarm_control_panel.concord232 docs]) ([binary_sensor.concord232 docs]) ([sensor.folder docs]) ([sensor.simulated docs]) +- Fix interaction with hyperion on NodeMCU ([@a-andre] - [#12872]) ([light.hyperion docs]) +- Add the Gamerscore and Tier of the account ([@kevintuhumury] - [#12867]) ([sensor.xbox_live docs]) +- Improve influxdb throughput ([@amelchio] - [#12882]) ([influxdb docs]) +- Add config flow for Hue ([@balloob] - [#12830]) ([config docs]) ([hue docs]) +- Fix issue with guest August lock being included ([@snjoetw] - [#12893]) ([august docs]) +- Upgrade to py-canary 0.4.1 ([@snjoetw] - [#12894]) ([canary docs]) +- update html5 to async/await ([@perosb] - [#12895]) ([notify.html5 docs]) +- Adding additional switches and sensors for Tesla ([@alandtse] - [#12241]) ([device_tracker.tesla docs]) ([sensor.tesla docs]) ([switch.tesla docs]) +- Additional radio schemes for sonos ([@amelchio] - [#12886]) ([media_player.sonos docs]) +- Fix Edimax new firmware auth error and move to pyedimax fork ([@andreipop2005] - [#12873]) ([switch.edimax docs]) +- InfluxDB cleanups ([@amelchio] - [#12903]) ([influxdb docs]) +- Fix for moisture sensors in isy994 ([@thejta] - [#12734]) ([binary_sensor.isy994 docs]) +- Apple TV should return all supported features ([@lucasweb78] - [#12167]) ([media_player.apple_tv docs]) +- Remove dynamic controls from sonos ([@amelchio] - [#12908]) ([media_player.sonos docs]) +- Fix async method call in sync context ([@balloob] - [#12890]) ([device_tracker.icloud docs]) +- update html5 to async/await tests ([@perosb] - [#12896]) +- Fixing small naming bug ([@ebfio] - [#12911]) ([sensor.serial_pm docs]) +- Tibber: Check if the current electricity price is available before we… ([@danielhiversen] - [#12905]) ([sensor.tibber docs]) +- Add empty unit to systemmonitor load averages ([@DanNixon] - [#12900]) ([sensor.systemmonitor docs]) +- update notify html5 dependencies ([@perosb] - [#12898]) ([notify.html5 docs]) +- Xiaomi MiIO Remote: Lazy discover disabled ([@syssi] - [#12710]) ([remote.xiaomi_miio docs]) +- Xiaomi MiIO Switch: Allow unavailable devices at startup by model setting ([@syssi] - [#12626]) ([switch.xiaomi_miio docs]) +- Update python-coinbase to 2.1.0 ([@balloob] - [#12925]) ([coinbase docs]) +- Remove unused cloud APIs ([@balloob] - [#12913]) ([cloud docs]) +- Upgrade to aiohttp 3 ([@balloob] - [#12921]) ([api docs]) ([http docs]) ([shopping_list docs]) +- Flaky tests ([@balloob] - [#12931]) +- Addresses issues with Pollen.com API troubles ([@bachya] - [#12930]) ([sensor.pollen docs]) +- Set supported features based on capabilities of device ([@maxclaey] - [#12922]) ([climate.nest docs]) +- Bumped (minor) version of xknx within knx-component. This fixes a bug with inverted percentage within sensors. ([@Julius2342] - [#12929]) ([knx docs]) ([light.knx docs]) +- Added checks for empty replies from REST calls and supporting tests ([@nickovs] - [#12904]) ([sensor.rest docs]) +- Reinstate our old virtual env check in favor of pip ([@balloob] - [#12932]) +- Support for queries with no results (fix for #12856) ([@dgomes] - [#12888]) ([sensor.sql docs]) +- Fix netatmo sensor warning from invalid Voluptuous default ([@amelchio] - [#12933]) ([sensor.netatmo docs]) +- Updated to enforce quoted ZIP codes for Pollen ([@bachya] - [#12934]) ([sensor.pollen docs]) (breaking change) +- Added support for multiple onvif profiles ([@karlkar] - [#11651]) ([camera.onvif docs]) +- Make ubus dhcp name resolution optional ([@rmounce] - [#12658]) ([device_tracker.ubus docs]) +- Add add_devices back to rpi_camera ([@feanor12] - [#12947]) ([camera.rpi_camera docs]) +- Remove weird tests ([@balloob] - [#12936]) +- optional displaying the sensors location on the map ([@c7h] - [#12375]) ([sensor.luftdaten docs]) +- [SQL Sensor] partial revert of #12452 ([@dgomes] - [#12956]) ([sensor.sql docs]) +- Fix LIFX color conversions ([@amelchio] - [#12957]) ([light.lifx docs]) +- BugFix Popp strike lock not discovered in homeassistant. ([@turbokongen] - [#12951]) ([zwave docs]) +- Add a Media Player Component for Channels ([@maddox] - [#12937]) ([media_player.channels docs]) (new-platform) +- Telegram_bot three platform support proxy_url and proxy_params ([@crhan] - [#12878]) ([telegram_bot.broadcast docs]) ([telegram_bot.polling docs]) ([telegram_bot.webhooks docs]) +- Add support for alarm system, switch and thermostat to homekit ([@maxclaey] - [#12819]) ([homekit docs]) (new-platform) +- Pin lokalise script to working version ([@armills] - [#12965]) +- Hue: Don't change brightness when changing just color ([@balloob] - [#12940]) ([light.hue docs]) +- LIFX async/await conversion ([@amelchio] - [#12973]) ([light.lifx docs]) +- IMAP sensor async/await conversion ([@amelchio] - [#12988]) ([sensor.imap docs]) +- Refactor Google Assistant ([@balloob] - [#12959]) ([google_assistant docs]) ([light docs]) (breaking change) +- Bump pyEmby version to support aiohttp => 3 ([@mezz64] - [#12986]) ([media_player.emby docs]) +- Update pyalarmdotcom version ([@koolsb] - [#12987]) ([alarm_control_panel.alarmdotcom docs]) +- Show the error message when Zabbix fails to log in ([@cyberjacob] - [#12985]) ([zabbix docs]) +- Script/gen_requirements: Ignore package families ([@cdce8p] - [#12963]) +- Fix Sonos group discovery ([@amelchio] - [#12970]) ([media_player.sonos docs]) +- Check color temp range for google assistant ([@balloob] - [#12994]) ([google_assistant docs]) +- Fix limitlessled color temperature ([@amelchio] - [#12971]) ([light.limitlessled docs]) (breaking change) +- Fixes notify.html5 for notifications on FireFox ([@corneyl] - [#12993]) ([notify.html5 docs]) +- Move HomeAssistantView to separate file. Convert http to async syntax. [skip ci] ([@fanthos] - [#12982]) ([http docs]) +- Get zha switch and binary_sensor state on startup ([@SteveEasley] - [#11672]) ([zha docs]) ([binary_sensor.zha docs]) ([light.zha docs]) ([switch.zha docs]) +- Add camera proxy ([@PhracturedBlue] - [#12006]) ([camera.proxy docs]) (new-platform) +- check_config script evolution ([@kellerza] - [#12792]) +- Plex mark devices unavailable if they 'vanish' and clear media ([@ryanm101] - [#12811]) ([media_player.plex docs]) +- Add consider_home and source_type to device_tracker.see service ([@mueslo] - [#12849]) ([device_tracker docs]) +- Clean up Light Groups ([@OttoWinter] - [#12962]) ([light.group docs]) +- Updated to plexapi 3.0.6 ([@ryanm101] - [#13005]) ([media_player.plex docs]) ([sensor.plex docs]) + +[#11580]: https://github.com/home-assistant/home-assistant/pull/11580 +[#11640]: https://github.com/home-assistant/home-assistant/pull/11640 +[#11651]: https://github.com/home-assistant/home-assistant/pull/11651 +[#11672]: https://github.com/home-assistant/home-assistant/pull/11672 +[#11817]: https://github.com/home-assistant/home-assistant/pull/11817 +[#11978]: https://github.com/home-assistant/home-assistant/pull/11978 +[#11994]: https://github.com/home-assistant/home-assistant/pull/11994 +[#12006]: https://github.com/home-assistant/home-assistant/pull/12006 +[#12011]: https://github.com/home-assistant/home-assistant/pull/12011 +[#12143]: https://github.com/home-assistant/home-assistant/pull/12143 +[#12167]: https://github.com/home-assistant/home-assistant/pull/12167 +[#12229]: https://github.com/home-assistant/home-assistant/pull/12229 +[#12241]: https://github.com/home-assistant/home-assistant/pull/12241 +[#12325]: https://github.com/home-assistant/home-assistant/pull/12325 +[#12375]: https://github.com/home-assistant/home-assistant/pull/12375 +[#12399]: https://github.com/home-assistant/home-assistant/pull/12399 +[#12433]: https://github.com/home-assistant/home-assistant/pull/12433 +[#12449]: https://github.com/home-assistant/home-assistant/pull/12449 +[#12453]: https://github.com/home-assistant/home-assistant/pull/12453 +[#12507]: https://github.com/home-assistant/home-assistant/pull/12507 +[#12509]: https://github.com/home-assistant/home-assistant/pull/12509 +[#12534]: https://github.com/home-assistant/home-assistant/pull/12534 +[#12539]: https://github.com/home-assistant/home-assistant/pull/12539 +[#12592]: https://github.com/home-assistant/home-assistant/pull/12592 +[#12596]: https://github.com/home-assistant/home-assistant/pull/12596 +[#12597]: https://github.com/home-assistant/home-assistant/pull/12597 +[#12610]: https://github.com/home-assistant/home-assistant/pull/12610 +[#12620]: https://github.com/home-assistant/home-assistant/pull/12620 +[#12621]: https://github.com/home-assistant/home-assistant/pull/12621 +[#12626]: https://github.com/home-assistant/home-assistant/pull/12626 +[#12631]: https://github.com/home-assistant/home-assistant/pull/12631 +[#12633]: https://github.com/home-assistant/home-assistant/pull/12633 +[#12636]: https://github.com/home-assistant/home-assistant/pull/12636 +[#12646]: https://github.com/home-assistant/home-assistant/pull/12646 +[#12647]: https://github.com/home-assistant/home-assistant/pull/12647 +[#12648]: https://github.com/home-assistant/home-assistant/pull/12648 +[#12649]: https://github.com/home-assistant/home-assistant/pull/12649 +[#12650]: https://github.com/home-assistant/home-assistant/pull/12650 +[#12651]: https://github.com/home-assistant/home-assistant/pull/12651 +[#12658]: https://github.com/home-assistant/home-assistant/pull/12658 +[#12659]: https://github.com/home-assistant/home-assistant/pull/12659 +[#12660]: https://github.com/home-assistant/home-assistant/pull/12660 +[#12661]: https://github.com/home-assistant/home-assistant/pull/12661 +[#12662]: https://github.com/home-assistant/home-assistant/pull/12662 +[#12663]: https://github.com/home-assistant/home-assistant/pull/12663 +[#12664]: https://github.com/home-assistant/home-assistant/pull/12664 +[#12668]: https://github.com/home-assistant/home-assistant/pull/12668 +[#12676]: https://github.com/home-assistant/home-assistant/pull/12676 +[#12681]: https://github.com/home-assistant/home-assistant/pull/12681 +[#12706]: https://github.com/home-assistant/home-assistant/pull/12706 +[#12710]: https://github.com/home-assistant/home-assistant/pull/12710 +[#12713]: https://github.com/home-assistant/home-assistant/pull/12713 +[#12720]: https://github.com/home-assistant/home-assistant/pull/12720 +[#12722]: https://github.com/home-assistant/home-assistant/pull/12722 +[#12725]: https://github.com/home-assistant/home-assistant/pull/12725 +[#12728]: https://github.com/home-assistant/home-assistant/pull/12728 +[#12730]: https://github.com/home-assistant/home-assistant/pull/12730 +[#12734]: https://github.com/home-assistant/home-assistant/pull/12734 +[#12743]: https://github.com/home-assistant/home-assistant/pull/12743 +[#12763]: https://github.com/home-assistant/home-assistant/pull/12763 +[#12766]: https://github.com/home-assistant/home-assistant/pull/12766 +[#12771]: https://github.com/home-assistant/home-assistant/pull/12771 +[#12772]: https://github.com/home-assistant/home-assistant/pull/12772 +[#12786]: https://github.com/home-assistant/home-assistant/pull/12786 +[#12792]: https://github.com/home-assistant/home-assistant/pull/12792 +[#12800]: https://github.com/home-assistant/home-assistant/pull/12800 +[#12801]: https://github.com/home-assistant/home-assistant/pull/12801 +[#12803]: https://github.com/home-assistant/home-assistant/pull/12803 +[#12804]: https://github.com/home-assistant/home-assistant/pull/12804 +[#12805]: https://github.com/home-assistant/home-assistant/pull/12805 +[#12806]: https://github.com/home-assistant/home-assistant/pull/12806 +[#12811]: https://github.com/home-assistant/home-assistant/pull/12811 +[#12814]: https://github.com/home-assistant/home-assistant/pull/12814 +[#12815]: https://github.com/home-assistant/home-assistant/pull/12815 +[#12816]: https://github.com/home-assistant/home-assistant/pull/12816 +[#12819]: https://github.com/home-assistant/home-assistant/pull/12819 +[#12825]: https://github.com/home-assistant/home-assistant/pull/12825 +[#12828]: https://github.com/home-assistant/home-assistant/pull/12828 +[#12830]: https://github.com/home-assistant/home-assistant/pull/12830 +[#12834]: https://github.com/home-assistant/home-assistant/pull/12834 +[#12835]: https://github.com/home-assistant/home-assistant/pull/12835 +[#12841]: https://github.com/home-assistant/home-assistant/pull/12841 +[#12844]: https://github.com/home-assistant/home-assistant/pull/12844 +[#12847]: https://github.com/home-assistant/home-assistant/pull/12847 +[#12849]: https://github.com/home-assistant/home-assistant/pull/12849 +[#12851]: https://github.com/home-assistant/home-assistant/pull/12851 +[#12858]: https://github.com/home-assistant/home-assistant/pull/12858 +[#12864]: https://github.com/home-assistant/home-assistant/pull/12864 +[#12865]: https://github.com/home-assistant/home-assistant/pull/12865 +[#12867]: https://github.com/home-assistant/home-assistant/pull/12867 +[#12870]: https://github.com/home-assistant/home-assistant/pull/12870 +[#12872]: https://github.com/home-assistant/home-assistant/pull/12872 +[#12873]: https://github.com/home-assistant/home-assistant/pull/12873 +[#12874]: https://github.com/home-assistant/home-assistant/pull/12874 +[#12878]: https://github.com/home-assistant/home-assistant/pull/12878 +[#12879]: https://github.com/home-assistant/home-assistant/pull/12879 +[#12881]: https://github.com/home-assistant/home-assistant/pull/12881 +[#12882]: https://github.com/home-assistant/home-assistant/pull/12882 +[#12885]: https://github.com/home-assistant/home-assistant/pull/12885 +[#12886]: https://github.com/home-assistant/home-assistant/pull/12886 +[#12888]: https://github.com/home-assistant/home-assistant/pull/12888 +[#12890]: https://github.com/home-assistant/home-assistant/pull/12890 +[#12893]: https://github.com/home-assistant/home-assistant/pull/12893 +[#12894]: https://github.com/home-assistant/home-assistant/pull/12894 +[#12895]: https://github.com/home-assistant/home-assistant/pull/12895 +[#12896]: https://github.com/home-assistant/home-assistant/pull/12896 +[#12898]: https://github.com/home-assistant/home-assistant/pull/12898 +[#12900]: https://github.com/home-assistant/home-assistant/pull/12900 +[#12903]: https://github.com/home-assistant/home-assistant/pull/12903 +[#12904]: https://github.com/home-assistant/home-assistant/pull/12904 +[#12905]: https://github.com/home-assistant/home-assistant/pull/12905 +[#12908]: https://github.com/home-assistant/home-assistant/pull/12908 +[#12911]: https://github.com/home-assistant/home-assistant/pull/12911 +[#12913]: https://github.com/home-assistant/home-assistant/pull/12913 +[#12921]: https://github.com/home-assistant/home-assistant/pull/12921 +[#12922]: https://github.com/home-assistant/home-assistant/pull/12922 +[#12925]: https://github.com/home-assistant/home-assistant/pull/12925 +[#12929]: https://github.com/home-assistant/home-assistant/pull/12929 +[#12930]: https://github.com/home-assistant/home-assistant/pull/12930 +[#12931]: https://github.com/home-assistant/home-assistant/pull/12931 +[#12932]: https://github.com/home-assistant/home-assistant/pull/12932 +[#12933]: https://github.com/home-assistant/home-assistant/pull/12933 +[#12934]: https://github.com/home-assistant/home-assistant/pull/12934 +[#12936]: https://github.com/home-assistant/home-assistant/pull/12936 +[#12937]: https://github.com/home-assistant/home-assistant/pull/12937 +[#12940]: https://github.com/home-assistant/home-assistant/pull/12940 +[#12947]: https://github.com/home-assistant/home-assistant/pull/12947 +[#12951]: https://github.com/home-assistant/home-assistant/pull/12951 +[#12956]: https://github.com/home-assistant/home-assistant/pull/12956 +[#12957]: https://github.com/home-assistant/home-assistant/pull/12957 +[#12959]: https://github.com/home-assistant/home-assistant/pull/12959 +[#12962]: https://github.com/home-assistant/home-assistant/pull/12962 +[#12963]: https://github.com/home-assistant/home-assistant/pull/12963 +[#12965]: https://github.com/home-assistant/home-assistant/pull/12965 +[#12970]: https://github.com/home-assistant/home-assistant/pull/12970 +[#12971]: https://github.com/home-assistant/home-assistant/pull/12971 +[#12973]: https://github.com/home-assistant/home-assistant/pull/12973 +[#12982]: https://github.com/home-assistant/home-assistant/pull/12982 +[#12985]: https://github.com/home-assistant/home-assistant/pull/12985 +[#12986]: https://github.com/home-assistant/home-assistant/pull/12986 +[#12987]: https://github.com/home-assistant/home-assistant/pull/12987 +[#12988]: https://github.com/home-assistant/home-assistant/pull/12988 +[#12993]: https://github.com/home-assistant/home-assistant/pull/12993 +[#12994]: https://github.com/home-assistant/home-assistant/pull/12994 +[#13005]: https://github.com/home-assistant/home-assistant/pull/13005 +[@DanNixon]: https://github.com/DanNixon +[@Julius2342]: https://github.com/Julius2342 +[@OttoWinter]: https://github.com/OttoWinter +[@PhilRW]: https://github.com/PhilRW +[@PhracturedBlue]: https://github.com/PhracturedBlue +[@SteveEasley]: https://github.com/SteveEasley +[@a-andre]: https://github.com/a-andre +[@alandtse]: https://github.com/alandtse +[@amelchio]: https://github.com/amelchio +[@andreipop2005]: https://github.com/andreipop2005 +[@armills]: https://github.com/armills +[@aronsky]: https://github.com/aronsky +[@awkwardDuck]: https://github.com/awkwardDuck +[@bachya]: https://github.com/bachya +[@bakedraccoon]: https://github.com/bakedraccoon +[@balloob]: https://github.com/balloob +[@bertbert72]: https://github.com/bertbert72 +[@bokub]: https://github.com/bokub +[@c7h]: https://github.com/c7h +[@cdce8p]: https://github.com/cdce8p +[@chilicheech]: https://github.com/chilicheech +[@cmsimike]: https://github.com/cmsimike +[@corneyl]: https://github.com/corneyl +[@crhan]: https://github.com/crhan +[@cyberjacob]: https://github.com/cyberjacob +[@danielhiversen]: https://github.com/danielhiversen +[@dgomes]: https://github.com/dgomes +[@dingusdk]: https://github.com/dingusdk +[@doctorjames]: https://github.com/doctorjames +[@ebfio]: https://github.com/ebfio +[@fanthos]: https://github.com/fanthos +[@feanor12]: https://github.com/feanor12 +[@jcconnell]: https://github.com/jcconnell +[@jeroenterheerdt]: https://github.com/jeroenterheerdt +[@karlkar]: https://github.com/karlkar +[@kbickar]: https://github.com/kbickar +[@kellerza]: https://github.com/kellerza +[@kevintuhumury]: https://github.com/kevintuhumury +[@koolsb]: https://github.com/koolsb +[@lucasweb78]: https://github.com/lucasweb78 +[@lwis]: https://github.com/lwis +[@maddox]: https://github.com/maddox +[@maxclaey]: https://github.com/maxclaey +[@mezz64]: https://github.com/mezz64 +[@mfrueh]: https://github.com/mfrueh +[@mikeodr]: https://github.com/mikeodr +[@mueslo]: https://github.com/mueslo +[@nickovs]: https://github.com/nickovs +[@perosb]: https://github.com/perosb +[@reedriley]: https://github.com/reedriley +[@rmounce]: https://github.com/rmounce +[@robmarkcole]: https://github.com/robmarkcole +[@ryanm101]: https://github.com/ryanm101 +[@rytilahti]: https://github.com/rytilahti +[@scop]: https://github.com/scop +[@snjoetw]: https://github.com/snjoetw +[@swilson]: https://github.com/swilson +[@syssi]: https://github.com/syssi +[@teharris1]: https://github.com/teharris1 +[@thejta]: https://github.com/thejta +[@turbokongen]: https://github.com/turbokongen +[alarm_control_panel.alarmdotcom docs]: https://home-assistant.io/components/alarm_control_panel.alarmdotcom/ +[alarm_control_panel.concord232 docs]: https://home-assistant.io/components/alarm_control_panel.concord232/ +[alarm_control_panel.egardia docs]: https://home-assistant.io/components/alarm_control_panel.egardia/ +[api docs]: https://home-assistant.io/components/api/ +[august docs]: https://home-assistant.io/components/august/ +[binary_sensor docs]: https://home-assistant.io/components/binary_sensor/ +[binary_sensor.concord232 docs]: https://home-assistant.io/components/binary_sensor.concord232/ +[binary_sensor.egardia docs]: https://home-assistant.io/components/binary_sensor.egardia/ +[binary_sensor.hikvision docs]: https://home-assistant.io/components/binary_sensor.hikvision/ +[binary_sensor.insteon_plm docs]: https://home-assistant.io/components/binary_sensor.insteon_plm/ +[binary_sensor.isy994 docs]: https://home-assistant.io/components/binary_sensor.isy994/ +[binary_sensor.knx docs]: https://home-assistant.io/components/binary_sensor.knx/ +[binary_sensor.upcloud docs]: https://home-assistant.io/components/binary_sensor.upcloud/ +[binary_sensor.zha docs]: https://home-assistant.io/components/binary_sensor.zha/ +[camera.onvif docs]: https://home-assistant.io/components/camera.onvif/ +[camera.proxy docs]: https://home-assistant.io/components/camera.proxy/ +[camera.rpi_camera docs]: https://home-assistant.io/components/camera.rpi_camera/ +[camera.yi docs]: https://home-assistant.io/components/camera.yi/ +[canary docs]: https://home-assistant.io/components/canary/ +[climate docs]: https://home-assistant.io/components/climate/ +[climate.nest docs]: https://home-assistant.io/components/climate.nest/ +[climate.wink docs]: https://home-assistant.io/components/climate.wink/ +[cloud docs]: https://home-assistant.io/components/cloud/ +[coinbase docs]: https://home-assistant.io/components/coinbase/ +[config docs]: https://home-assistant.io/components/config/ +[conversation docs]: https://home-assistant.io/components/conversation/ +[demo docs]: https://home-assistant.io/components/demo/ +[device_tracker docs]: https://home-assistant.io/components/device_tracker/ +[device_tracker.asuswrt docs]: https://home-assistant.io/components/device_tracker.asuswrt/ +[device_tracker.icloud docs]: https://home-assistant.io/components/device_tracker.icloud/ +[device_tracker.tesla docs]: https://home-assistant.io/components/device_tracker.tesla/ +[device_tracker.ubus docs]: https://home-assistant.io/components/device_tracker.ubus/ +[egardia docs]: https://home-assistant.io/components/egardia/ +[fan.insteon_plm docs]: https://home-assistant.io/components/fan.insteon_plm/ +[frontend docs]: https://home-assistant.io/components/frontend/ +[google_assistant docs]: https://home-assistant.io/components/google_assistant/ +[group docs]: https://home-assistant.io/components/group/ +[homekit docs]: https://home-assistant.io/components/homekit/ +[http docs]: https://home-assistant.io/components/http/ +[hue docs]: https://home-assistant.io/components/hue/ +[ihc docs]: https://home-assistant.io/components/ihc/ +[influxdb docs]: https://home-assistant.io/components/influxdb/ +[insteon_plm docs]: https://home-assistant.io/components/insteon_plm/ +[knx docs]: https://home-assistant.io/components/knx/ +[light docs]: https://home-assistant.io/components/light/ +[light.demo docs]: https://home-assistant.io/components/light.demo/ +[light.group docs]: https://home-assistant.io/components/light.group/ +[light.group docs]: https://home-assistant.io/components/light.group/ +[light.hue docs]: https://home-assistant.io/components/light.hue/ +[light.hyperion docs]: https://home-assistant.io/components/light.hyperion/ +[light.insteon_plm docs]: https://home-assistant.io/components/light.insteon_plm/ +[light.knx docs]: https://home-assistant.io/components/light.knx/ +[light.lifx docs]: https://home-assistant.io/components/light.lifx/ +[light.limitlessled docs]: https://home-assistant.io/components/light.limitlessled/ +[light.xiaomi_miio docs]: https://home-assistant.io/components/light.xiaomi_miio/ +[light.zha docs]: https://home-assistant.io/components/light.zha/ +[logbook docs]: https://home-assistant.io/components/logbook/ +[media_player.apple_tv docs]: https://home-assistant.io/components/media_player.apple_tv/ +[media_player.cast docs]: https://home-assistant.io/components/media_player.cast/ +[media_player.channels docs]: https://home-assistant.io/components/media_player.channels/ +[media_player.emby docs]: https://home-assistant.io/components/media_player.emby/ +[media_player.plex docs]: https://home-assistant.io/components/media_player.plex/ +[media_player.songpal docs]: https://home-assistant.io/components/media_player.songpal/ +[media_player.sonos docs]: https://home-assistant.io/components/media_player.sonos/ +[mqtt docs]: https://home-assistant.io/components/mqtt/ +[notify.html5 docs]: https://home-assistant.io/components/notify.html5/ +[notify.synology_chat docs]: https://home-assistant.io/components/notify.synology_chat/ +[remote.xiaomi_miio docs]: https://home-assistant.io/components/remote.xiaomi_miio/ +[rest_command docs]: https://home-assistant.io/components/rest_command/ +[scene docs]: https://home-assistant.io/components/scene/ +[sensor.airvisual docs]: https://home-assistant.io/components/sensor.airvisual/ +[sensor.citybikes docs]: https://home-assistant.io/components/sensor.citybikes/ +[sensor.filter docs]: https://home-assistant.io/components/sensor.filter/ +[sensor.fitbit docs]: https://home-assistant.io/components/sensor.fitbit/ +[sensor.folder docs]: https://home-assistant.io/components/sensor.folder/ +[sensor.history_stats docs]: https://home-assistant.io/components/sensor.history_stats/ +[sensor.imap docs]: https://home-assistant.io/components/sensor.imap/ +[sensor.insteon_plm docs]: https://home-assistant.io/components/sensor.insteon_plm/ +[sensor.luftdaten docs]: https://home-assistant.io/components/sensor.luftdaten/ +[sensor.netatmo docs]: https://home-assistant.io/components/sensor.netatmo/ +[sensor.plex docs]: https://home-assistant.io/components/sensor.plex/ +[sensor.pollen docs]: https://home-assistant.io/components/sensor.pollen/ +[sensor.rest docs]: https://home-assistant.io/components/sensor.rest/ +[sensor.sense docs]: https://home-assistant.io/components/sensor.sense/ +[sensor.serial_pm docs]: https://home-assistant.io/components/sensor.serial_pm/ +[sensor.simulated docs]: https://home-assistant.io/components/sensor.simulated/ +[sensor.sql docs]: https://home-assistant.io/components/sensor.sql/ +[sensor.systemmonitor docs]: https://home-assistant.io/components/sensor.systemmonitor/ +[sensor.teksavvy docs]: https://home-assistant.io/components/sensor.teksavvy/ +[sensor.tesla docs]: https://home-assistant.io/components/sensor.tesla/ +[sensor.tibber docs]: https://home-assistant.io/components/sensor.tibber/ +[sensor.xbox_live docs]: https://home-assistant.io/components/sensor.xbox_live/ +[sensor.xiaomi_aqara docs]: https://home-assistant.io/components/sensor.xiaomi_aqara/ +[sensor.zestimate docs]: https://home-assistant.io/components/sensor.zestimate/ +[shopping_list docs]: https://home-assistant.io/components/shopping_list/ +[switch.edimax docs]: https://home-assistant.io/components/switch.edimax/ +[switch.insteon_plm docs]: https://home-assistant.io/components/switch.insteon_plm/ +[switch.rest docs]: https://home-assistant.io/components/switch.rest/ +[switch.tesla docs]: https://home-assistant.io/components/switch.tesla/ +[switch.upcloud docs]: https://home-assistant.io/components/switch.upcloud/ +[switch.volvooncall docs]: https://home-assistant.io/components/switch.volvooncall/ +[switch.xiaomi_aqara docs]: https://home-assistant.io/components/switch.xiaomi_aqara/ +[switch.xiaomi_miio docs]: https://home-assistant.io/components/switch.xiaomi_miio/ +[switch.zha docs]: https://home-assistant.io/components/switch.zha/ +[telegram_bot.broadcast docs]: https://home-assistant.io/components/telegram_bot.broadcast/ +[telegram_bot.polling docs]: https://home-assistant.io/components/telegram_bot.polling/ +[telegram_bot.webhooks docs]: https://home-assistant.io/components/telegram_bot.webhooks/ +[upcloud docs]: https://home-assistant.io/components/upcloud/ +[vacuum.xiaomi_miio docs]: https://home-assistant.io/components/vacuum.xiaomi_miio/ +[weather docs]: https://home-assistant.io/components/weather/ +[weather.darksky docs]: https://home-assistant.io/components/weather.darksky/ +[xiaomi_aqara docs]: https://home-assistant.io/components/xiaomi_aqara/ +[zabbix docs]: https://home-assistant.io/components/zabbix/ +[zha docs]: https://home-assistant.io/components/zha/ +[zwave docs]: https://home-assistant.io/components/zwave/ +]]>
    +
    + <![CDATA[0.64: Over 1000 integrations! New: HomeKit, BMW, August.]]> @@ -2648,409 +3247,6 @@ Note however, that this feature was replaced by a new ignore_string config optio [switch.broadlink docs]: https://home-assistant.io/components/switch.broadlink/ [switch.scsgate docs]: https://home-assistant.io/components/switch.scsgate/ [zha docs]: https://home-assistant.io/components/zha/ -]]> - - - - <![CDATA[0.60: Beckhoff/TwinCAT, WebDav, Gearbest, iAlarm]]> - - 2017-12-17T02:00:00+00:00 - https://home-assistant.io/blog/2017/12/17/release-60 - - -The biggest change for 0.60 will be covered in a separate [blog post](/blog/2017/12/17/introducing-home-assistant-cloud/). Thus, we will keep it short here. Just one thing: This is the last release in 2017. We will be back to our bi-weekly release cycle in 2018. - -A big "Thank you" to all people who supported us to make this release possible. - -## TwinCAT -With the brand-new [ADS (automation device specification)][ads docs] component by [@stlehmann] allows you to hook Home Assistant into this fieldbus independent interface which is often used between Beckhoff devices running with TwinCAT. - -## WebDav calendar -Thanks to [@maxlaverse] Home Assistant support now [WebDav calendars][calendar.caldav docs]. - -## Tracking prices -With the new [`gearbest` sensor][sensor.gearbest docs] there is now an additional sensor available to track the price of a product. - -## Financial details -Yahoo! has discontinued their financial service. To fill this gap we have now the [`alpha_vantage` sensor][sensor.alpha_vantage docs] which is intruded in this release and allows you to monitor the stock market. - -## New Platforms - -- Add iAlarm support ([@RyuzakiKK] - [#10878]) ([alarm_control_panel.ialarm docs]) (new-platform) -- Add Alpha Vantage sensor ([@fabaff] - [#10873]) ([sensor.alpha_vantage docs]) (new-platform) -- Add ADS component ([@stlehmann] - [#10142]) ([ads docs]) ([binary_sensor.ads docs]) ([light.ads docs]) ([sensor.ads docs]) ([switch.ads docs]) (new-platform) -- Gearbest sensor ([@HerrHofrat] - [#10556]) ([sensor.gearbest docs]) (new-platform) -- Add Ziggo Mediabox XL media_player ([@b10m] - [#10514]) ([media_player.ziggo_mediabox_xl docs]) (new-platform) -- Meraki AP Device tracker ([@masarliev] - [#10971]) ([device_tracker.meraki docs]) (new-platform) -- Added Vera scenes ([@alanfischer] - [#10424]) ([vera docs]) ([scene.vera docs]) (new-platform) -- Add support for Canary component and platforms ([@snjoetw] - [#10306]) ([canary docs]) ([camera.canary docs]) ([sensor.canary docs]) (new-platform) -- Add support for Logitech UE Smart Radios. ([@GreenTurtwig] - [#10077]) ([media_player.ue_smart_radio docs]) (new-platform) -- Added support for cover in tellstick ([@perfalk] - [#10858]) ([tellstick docs]) ([cover.tellstick docs]) (new-platform) -- Add a caldav calendar component ([@maxlaverse] - [#10842]) ([calendar.caldav docs]) (new-platform) -- Refactor hue to split bridge support from light platform ([@andreacampi] - [#10691]) ([hue docs]) ([light.hue docs]) (breaking change) (new-platform) - -## Release 0.60.1 - January 6 - -- Fix async IO in Sesame lock component. ([@veleek] - [#11054]) ([lock.sesame docs]) -- Fix webdav calendar schema ([@maxlaverse] - [#11185]) ([calendar.caldav docs]) -- homematic: add username and password to interface config schema ([@jannau] - [#11214]) ([homematic docs]) -- Fix webostv select source ([@OddBloke] - [#11227]) ([media_player.webostv docs]) -- Fix detection of if a negative node is in use ([@OverloadUT] - [#11255]) ([binary_sensor.isy994 docs]) -- Bugfix homematic available modus ([@pvizeli] - [#11256]) ([homematic docs]) -- Support multiple Hue bridges with lights of the same id ([@andreacampi] - [#11259]) ([light.hue docs]) -- Fix inverted sensors on the concord232 binary sensor component ([@CTLS] - [#11261]) ([binary_sensor.concord232 docs]) -- Fix handling zero values for state_on/state_off ([@ziotibia81] - [#11264]) ([switch.modbus docs]) -- Fix allday events in custom_calendars ([@maxlaverse] - [#11272]) ([calendar.caldav docs]) -- Fix unpredictable entity names in concord232 binary_sensor ([@rwa] - [#11292]) ([binary_sensor.concord232 docs]) -- Fix leak sensors always showing Unknown until Wet ([@OverloadUT] - [#11313]) ([binary_sensor.isy994 docs]) -- Don't block on sevice call for alexa ([@pvizeli] - [#11358]) ([alexa.smart_home docs]) -- iOS 10 should be served javascript_version:es5 ([@mnoorenberghe] - [#11387]) - -## If you need help... - -...don't hesitate to use our very active [forums](https://community.home-assistant.io/) or join us for a little [chat](https://discord.gg/c5DvZ4e). The release notes have comments enabled but it's preferred if you use the former communication channels. Thanks. - -## Reporting Issues - -Experiencing issues introduced by this release? Please report them in our [issue tracker](https://github.com/home-assistant/home-assistant/issues). Make sure to fill in all fields of the issue template. - - - -## Breaking Changes - -- Update snips to listen on new mqtt topic and utilize rawValue ([@tschmidty69] - [#11020]) ([snips docs]) (breaking change) -- Refactor hue to split bridge support from light platform ([@andreacampi] - [#10691]) ([hue docs]) ([light.hue docs]) (breaking change) (new-platform) -- Use luftdaten module ([@fabaff] - [#10970]) ([sensor.luftdaten docs]) (breaking change) -- ISY994 sensor improvements ([@OverloadUT] - [#10805]) ([isy994 docs]) ([binary_sensor.isy994 docs]) (breaking change) -- Homematic next ([@pvizeli] - [#11156]) ([homematic docs]) (breaking change) - -## All changes - -- Update ecobee version to fix stack-trace issue ([@PhracturedBlue] - [#10894]) ([ecobee docs]) -- Pybotvac multi ([@raymccarthy] - [#10843]) ([neato docs]) -- More declarative timeout syntax for manual alarm control panel. ([@bonzini] - [#10738]) ([alarm_control_panel.manual docs]) ([alarm_control_panel.manual_mqtt docs]) -- Unpacking RESTful sensor JSON results into attributes. ([@nickovs] - [#10753]) ([sensor.rest docs]) -- Bump dev to 0.60.0.dev0 ([@fabaff] - [#10912]) -- Update eliqonline.py ([@molobrakos] - [#10914]) ([sensor.eliqonline docs]) -- Add iAlarm support ([@RyuzakiKK] - [#10878]) ([alarm_control_panel.ialarm docs]) (new-platform) -- Correction of Samsung Power OFF behaviour ([@RiRomain] - [#10907]) ([media_player.samsungtv docs]) -- Add Alpha Vantage sensor ([@fabaff] - [#10873]) ([sensor.alpha_vantage docs]) (new-platform) -- Don't repeat getting receiver name on each update / pushed to denonavr 0.5.5 ([@scarface-4711] - [#10915]) ([media_player.denonavr docs]) -- Add Min and Event Count Metrics To Prometheus ([@bah2830] - [#10530]) ([prometheus docs]) -- Update coveragerc ([@balloob] - [#10931]) -- Report availability of TP-Link smart sockets ([@DanNixon] - [#10933]) ([switch.tplink docs]) -- Set percent unit for battery level so that history displays properly; edited variable name for consistency ([@nbougues] - [#10932]) ([sensor.tesla docs]) -- Export climate status and target temperature to Prometheus ([@hudashot] - [#10919]) ([prometheus docs]) -- Tado ignore invalid devices ([@dasos] - [#10927]) ([climate.tado docs]) -- don't ignore voltage data if sensor data changed ([@PaulAnnekov] - [#10925]) ([xiaomi_aqara docs]) -- Add ADS component ([@stlehmann] - [#10142]) ([ads docs]) ([binary_sensor.ads docs]) ([light.ads docs]) ([sensor.ads docs]) ([switch.ads docs]) (new-platform) -- Gearbest sensor ([@HerrHofrat] - [#10556]) ([sensor.gearbest docs]) (new-platform) -- Add Ziggo Mediabox XL media_player ([@b10m] - [#10514]) ([media_player.ziggo_mediabox_xl docs]) (new-platform) -- Generic thermostat initial_operation_mode ([@ziotibia81] - [#10690]) ([climate.generic_thermostat docs]) -- Use new build path for dev translations ([@armills] - [#10937]) -- Add option to set default hide if away for new devices ([@masarliev] - [#10762]) ([device_tracker docs]) -- Allow disabling the LEDs on TP-Link smart plugs ([@DanNixon] - [#10980]) ([switch.tplink docs]) -- Meraki AP Device tracker ([@masarliev] - [#10971]) ([device_tracker.meraki docs]) (new-platform) -- Update tradfri.py ([@pvizeli] - [#10991]) ([light.tradfri docs]) -- webostv: Ensure source exists before use ([@OddBloke] - [#10959]) ([media_player.webostv docs]) -- Ensure Docker script files uses LF line endings to support Docker for Windows. ([@R1chardTM] - [#10067]) -- Added Vera scenes ([@alanfischer] - [#10424]) ([vera docs]) ([scene.vera docs]) (new-platform) -- Fix Egardia alarm status shown as unknown after restart ([@jeroenterheerdt] - [#11010]) ([alarm_control_panel.egardia docs]) -- Handle OSError when forcibly turning off media_player.samsungtv ([@lwis] - [#10997]) ([media_player.samsungtv docs]) -- Shuffle support in Sonos ([@mar-schmidt] - [#10875]) ([media_player.sonos docs]) -- Add support for Canary component and platforms ([@snjoetw] - [#10306]) ([canary docs]) ([camera.canary docs]) ([sensor.canary docs]) (new-platform) -- Ignore Sonos players with unknown hostnames ([@amelchio] - [#11013]) -- Support LIFX Mini products ([@amelchio] - [#10996]) ([light.lifx docs]) -- Update snips to listen on new mqtt topic and utilize rawValue ([@tschmidty69] - [#11020]) ([snips docs]) (breaking change) -- Change default js version to auto ([@andrey-git] - [#10999]) -- Serialize mochad requests ([@mtreinish] - [#11029]) ([mochad docs]) ([light.mochad docs]) ([switch.mochad docs]) -- In dev mode expose only relevant sources ([@andrey-git] - [#11026]) -- Added force_update for REST sensor ([@foxel] - [#11016]) ([sensor.miflora docs]) ([sensor.mqtt docs]) ([sensor.rest docs]) -- Add support for Logitech UE Smart Radios. ([@GreenTurtwig] - [#10077]) ([media_player.ue_smart_radio docs]) (new-platform) -- Make notify.html5 depend on config ([@balloob] - [#11052]) ([notify.html5 docs]) -- This change fixes the error `OSError: [WinError 193]` on Windows debuggers (i.e. PyCharm) ([@tringler] - [#11034]) -- Added support for cover in tellstick ([@perfalk] - [#10858]) ([tellstick docs]) ([cover.tellstick docs]) (new-platform) -- Add a caldav calendar component ([@maxlaverse] - [#10842]) ([calendar.caldav docs]) (new-platform) -- Add GPS coords to meraki ([@addelovein] - [#10998]) ([device_tracker.meraki docs]) -- Refactor hue to split bridge support from light platform ([@andreacampi] - [#10691]) ([hue docs]) ([light.hue docs]) (breaking change) (new-platform) -- add custom bypass status to total connect ([@uchagani] - [#11042]) ([alarm_control_panel.totalconnect docs]) -- Volvo on call: Optional use of Scandinavian miles. Also add average fuel consumption property ([@molobrakos] - [#11051]) ([volvooncall docs]) ([sensor.volvooncall docs]) -- Allow tradfri to read the available state of the device ([@pvizeli] - [#11056]) ([light.tradfri docs]) -- Upgrade aiohttp to 2.3.6 ([@fabaff] - [#11079]) -- Upgrade yarl to 0.16.0 ([@fabaff] - [#11078]) -- Upgrade psutil to 5.4.2 ([@fabaff] - [#11083]) ([sensor.systemmonitor docs]) -- Upgrade youtube_dl to 2017.12.10 ([@fabaff] - [#11080]) ([media_extractor docs]) -- Upgrade shodan to 1.7.7 ([@fabaff] - [#11084]) ([sensor.shodan docs]) -- Update tellcore-net to 0.4 ([@pvizeli] - [#11087]) ([tellstick docs]) -- Bump pymusiccast to version 0.1.6 ([@jalmeroth] - [#11091]) ([media_player.yamaha_musiccast docs]) -- Use luftdaten module ([@fabaff] - [#10970]) ([sensor.luftdaten docs]) (breaking change) -- Bump pyatv to 0.3.9 ([@postlund] - [#11104]) ([apple_tv docs]) -- Report availability for TP-Link smart bulbs ([@DanNixon] - [#10976]) ([light.tplink docs]) -- Fix incorrect comment. ([@emosenkis] - [#11111]) -- Update Warrant ([@balloob] - [#11101]) ([cloud docs]) -- Fixed typo in automation.py ([@ryanm101] - [#11116]) ([config.automation docs]) -- Add media position properties ([@pschmitt] - [#10076]) ([media_player.liveboxplaytv docs]) -- update pyripple ([@nkgilley] - [#11122]) ([sensor.ripple docs]) -- Skip HASS emulated Hue bridges from detection. ([@andreacampi] - [#11128]) ([hue docs]) -- Always consume the no_throttle keyword argument. ([@andreacampi] - [#11126]) -- Add problem device class ([@armills] - [#11130]) ([binary_sensor docs]) -- set default utc offset to 0 ([@pollett] - [#11114]) ([sensor.efergy docs]) -- Allow using more than one keyboard remote ([@BryanJacobs] - [#11061]) ([keyboard_remote docs]) -- ISY994 sensor improvements ([@OverloadUT] - [#10805]) ([isy994 docs]) ([binary_sensor.isy994 docs]) (breaking change) -- Disable html5 notify dependency ([@balloob] - [#11135]) ([notify.html5 docs]) -- Upgrade Homematic ([@danielperna84] - [#11149]) ([homematic docs]) -- Fix X10 commands for mochad light turn on ([@mtreinish] - [#11146]) ([light.mochad docs]) -- Homematic next ([@pvizeli] - [#11156]) ([homematic docs]) (breaking change) -- Resolve hostnames ([@pvizeli] - [#11160]) ([homematic docs]) -- Perform logbook filtering on the worker thread ([@armills] - [#11161]) ([logbook docs]) -- Don't connect to cloud if subscription expired ([@balloob] - [#11163]) ([cloud docs]) ([cloud.const docs]) -- Add install mode to homematic ([@pvizeli] - [#11164]) ([homematic docs]) -- convert alarmdecoder interface from async to sync ([@PhracturedBlue] - [#11168]) ([alarmdecoder docs]) -- Remove logging ([@cmsimike] - [#11173]) ([sensor.octoprint docs]) -- Revbump to SoCo 0.13 and add support for Night Sound and Speech Enhancement. ([@rbdixon] - [#10765]) ([media_player.sonos docs]) - -[#10067]: https://github.com/home-assistant/home-assistant/pull/10067 -[#10076]: https://github.com/home-assistant/home-assistant/pull/10076 -[#10077]: https://github.com/home-assistant/home-assistant/pull/10077 -[#10142]: https://github.com/home-assistant/home-assistant/pull/10142 -[#10306]: https://github.com/home-assistant/home-assistant/pull/10306 -[#10424]: https://github.com/home-assistant/home-assistant/pull/10424 -[#10514]: https://github.com/home-assistant/home-assistant/pull/10514 -[#10530]: https://github.com/home-assistant/home-assistant/pull/10530 -[#10556]: https://github.com/home-assistant/home-assistant/pull/10556 -[#10690]: https://github.com/home-assistant/home-assistant/pull/10690 -[#10691]: https://github.com/home-assistant/home-assistant/pull/10691 -[#10738]: https://github.com/home-assistant/home-assistant/pull/10738 -[#10753]: https://github.com/home-assistant/home-assistant/pull/10753 -[#10762]: https://github.com/home-assistant/home-assistant/pull/10762 -[#10765]: https://github.com/home-assistant/home-assistant/pull/10765 -[#10805]: https://github.com/home-assistant/home-assistant/pull/10805 -[#10842]: https://github.com/home-assistant/home-assistant/pull/10842 -[#10843]: https://github.com/home-assistant/home-assistant/pull/10843 -[#10858]: https://github.com/home-assistant/home-assistant/pull/10858 -[#10873]: https://github.com/home-assistant/home-assistant/pull/10873 -[#10875]: https://github.com/home-assistant/home-assistant/pull/10875 -[#10878]: https://github.com/home-assistant/home-assistant/pull/10878 -[#10894]: https://github.com/home-assistant/home-assistant/pull/10894 -[#10907]: https://github.com/home-assistant/home-assistant/pull/10907 -[#10912]: https://github.com/home-assistant/home-assistant/pull/10912 -[#10914]: https://github.com/home-assistant/home-assistant/pull/10914 -[#10915]: https://github.com/home-assistant/home-assistant/pull/10915 -[#10919]: https://github.com/home-assistant/home-assistant/pull/10919 -[#10925]: https://github.com/home-assistant/home-assistant/pull/10925 -[#10927]: https://github.com/home-assistant/home-assistant/pull/10927 -[#10931]: https://github.com/home-assistant/home-assistant/pull/10931 -[#10932]: https://github.com/home-assistant/home-assistant/pull/10932 -[#10933]: https://github.com/home-assistant/home-assistant/pull/10933 -[#10937]: https://github.com/home-assistant/home-assistant/pull/10937 -[#10959]: https://github.com/home-assistant/home-assistant/pull/10959 -[#10970]: https://github.com/home-assistant/home-assistant/pull/10970 -[#10971]: https://github.com/home-assistant/home-assistant/pull/10971 -[#10976]: https://github.com/home-assistant/home-assistant/pull/10976 -[#10980]: https://github.com/home-assistant/home-assistant/pull/10980 -[#10991]: https://github.com/home-assistant/home-assistant/pull/10991 -[#10996]: https://github.com/home-assistant/home-assistant/pull/10996 -[#10997]: https://github.com/home-assistant/home-assistant/pull/10997 -[#10998]: https://github.com/home-assistant/home-assistant/pull/10998 -[#10999]: https://github.com/home-assistant/home-assistant/pull/10999 -[#11010]: https://github.com/home-assistant/home-assistant/pull/11010 -[#11013]: https://github.com/home-assistant/home-assistant/pull/11013 -[#11016]: https://github.com/home-assistant/home-assistant/pull/11016 -[#11020]: https://github.com/home-assistant/home-assistant/pull/11020 -[#11026]: https://github.com/home-assistant/home-assistant/pull/11026 -[#11029]: https://github.com/home-assistant/home-assistant/pull/11029 -[#11034]: https://github.com/home-assistant/home-assistant/pull/11034 -[#11042]: https://github.com/home-assistant/home-assistant/pull/11042 -[#11051]: https://github.com/home-assistant/home-assistant/pull/11051 -[#11052]: https://github.com/home-assistant/home-assistant/pull/11052 -[#11056]: https://github.com/home-assistant/home-assistant/pull/11056 -[#11061]: https://github.com/home-assistant/home-assistant/pull/11061 -[#11078]: https://github.com/home-assistant/home-assistant/pull/11078 -[#11079]: https://github.com/home-assistant/home-assistant/pull/11079 -[#11080]: https://github.com/home-assistant/home-assistant/pull/11080 -[#11083]: https://github.com/home-assistant/home-assistant/pull/11083 -[#11084]: https://github.com/home-assistant/home-assistant/pull/11084 -[#11087]: https://github.com/home-assistant/home-assistant/pull/11087 -[#11091]: https://github.com/home-assistant/home-assistant/pull/11091 -[#11101]: https://github.com/home-assistant/home-assistant/pull/11101 -[#11104]: https://github.com/home-assistant/home-assistant/pull/11104 -[#11111]: https://github.com/home-assistant/home-assistant/pull/11111 -[#11114]: https://github.com/home-assistant/home-assistant/pull/11114 -[#11116]: https://github.com/home-assistant/home-assistant/pull/11116 -[#11122]: https://github.com/home-assistant/home-assistant/pull/11122 -[#11126]: https://github.com/home-assistant/home-assistant/pull/11126 -[#11128]: https://github.com/home-assistant/home-assistant/pull/11128 -[#11130]: https://github.com/home-assistant/home-assistant/pull/11130 -[#11135]: https://github.com/home-assistant/home-assistant/pull/11135 -[#11146]: https://github.com/home-assistant/home-assistant/pull/11146 -[#11149]: https://github.com/home-assistant/home-assistant/pull/11149 -[#11156]: https://github.com/home-assistant/home-assistant/pull/11156 -[#11160]: https://github.com/home-assistant/home-assistant/pull/11160 -[#11161]: https://github.com/home-assistant/home-assistant/pull/11161 -[#11163]: https://github.com/home-assistant/home-assistant/pull/11163 -[#11164]: https://github.com/home-assistant/home-assistant/pull/11164 -[#11168]: https://github.com/home-assistant/home-assistant/pull/11168 -[#11173]: https://github.com/home-assistant/home-assistant/pull/11173 -[@BryanJacobs]: https://github.com/BryanJacobs -[@DanNixon]: https://github.com/DanNixon -[@GreenTurtwig]: https://github.com/GreenTurtwig -[@HerrHofrat]: https://github.com/HerrHofrat -[@OddBloke]: https://github.com/OddBloke -[@OverloadUT]: https://github.com/OverloadUT -[@PaulAnnekov]: https://github.com/PaulAnnekov -[@PhracturedBlue]: https://github.com/PhracturedBlue -[@R1chardTM]: https://github.com/R1chardTM -[@RiRomain]: https://github.com/RiRomain -[@RyuzakiKK]: https://github.com/RyuzakiKK -[@addelovein]: https://github.com/addelovein -[@alanfischer]: https://github.com/alanfischer -[@amelchio]: https://github.com/amelchio -[@andreacampi]: https://github.com/andreacampi -[@andrey-git]: https://github.com/andrey-git -[@armills]: https://github.com/armills -[@b10m]: https://github.com/b10m -[@bah2830]: https://github.com/bah2830 -[@balloob]: https://github.com/balloob -[@bonzini]: https://github.com/bonzini -[@cmsimike]: https://github.com/cmsimike -[@danielperna84]: https://github.com/danielperna84 -[@dasos]: https://github.com/dasos -[@emosenkis]: https://github.com/emosenkis -[@fabaff]: https://github.com/fabaff -[@foxel]: https://github.com/foxel -[@hudashot]: https://github.com/hudashot -[@jalmeroth]: https://github.com/jalmeroth -[@jeroenterheerdt]: https://github.com/jeroenterheerdt -[@lwis]: https://github.com/lwis -[@mar-schmidt]: https://github.com/mar-schmidt -[@masarliev]: https://github.com/masarliev -[@maxlaverse]: https://github.com/maxlaverse -[@molobrakos]: https://github.com/molobrakos -[@mtreinish]: https://github.com/mtreinish -[@nbougues]: https://github.com/nbougues -[@nickovs]: https://github.com/nickovs -[@nkgilley]: https://github.com/nkgilley -[@perfalk]: https://github.com/perfalk -[@pollett]: https://github.com/pollett -[@postlund]: https://github.com/postlund -[@pschmitt]: https://github.com/pschmitt -[@pvizeli]: https://github.com/pvizeli -[@raymccarthy]: https://github.com/raymccarthy -[@rbdixon]: https://github.com/rbdixon -[@ryanm101]: https://github.com/ryanm101 -[@scarface-4711]: https://github.com/scarface-4711 -[@snjoetw]: https://github.com/snjoetw -[@stlehmann]: https://github.com/stlehmann -[@tringler]: https://github.com/tringler -[@tschmidty69]: https://github.com/tschmidty69 -[@uchagani]: https://github.com/uchagani -[@ziotibia81]: https://github.com/ziotibia81 -[ads docs]: https://home-assistant.io/components/ads/ -[alarm_control_panel.egardia docs]: https://home-assistant.io/components/alarm_control_panel.egardia/ -[alarm_control_panel.ialarm docs]: https://home-assistant.io/components/alarm_control_panel.ialarm/ -[alarm_control_panel.manual docs]: https://home-assistant.io/components/alarm_control_panel.manual/ -[alarm_control_panel.manual_mqtt docs]: https://home-assistant.io/components/alarm_control_panel.manual_mqtt/ -[alarm_control_panel.totalconnect docs]: https://home-assistant.io/components/alarm_control_panel.totalconnect/ -[alarmdecoder docs]: https://home-assistant.io/components/alarmdecoder/ -[apple_tv docs]: https://home-assistant.io/components/apple_tv/ -[binary_sensor docs]: https://home-assistant.io/components/binary_sensor/ -[binary_sensor.ads docs]: https://home-assistant.io/components/binary_sensor.ads/ -[binary_sensor.isy994 docs]: https://home-assistant.io/components/binary_sensor.isy994/ -[calendar.caldav docs]: https://home-assistant.io/components/calendar.caldav/ -[camera.canary docs]: https://home-assistant.io/components/camera.canary/ -[canary docs]: https://home-assistant.io/components/canary/ -[climate.generic_thermostat docs]: https://home-assistant.io/components/climate.generic_thermostat/ -[climate.tado docs]: https://home-assistant.io/components/climate.tado/ -[cloud docs]: https://home-assistant.io/components/cloud/ -[cloud.const docs]: https://home-assistant.io/components/cloud.const/ -[config.automation docs]: https://home-assistant.io/components/config.automation/ -[cover.tellstick docs]: https://home-assistant.io/components/cover.tellstick/ -[device_tracker docs]: https://home-assistant.io/components/device_tracker/ -[device_tracker.meraki docs]: https://home-assistant.io/components/device_tracker.meraki/ -[ecobee docs]: https://home-assistant.io/components/ecobee/ -[homematic docs]: https://home-assistant.io/components/homematic/ -[hue docs]: https://home-assistant.io/components/hue/ -[isy994 docs]: https://home-assistant.io/components/isy994/ -[keyboard_remote docs]: https://home-assistant.io/components/keyboard_remote/ -[light.ads docs]: https://home-assistant.io/components/light.ads/ -[light.hue docs]: https://home-assistant.io/components/light.hue/ -[light.lifx docs]: https://home-assistant.io/components/light.lifx/ -[light.mochad docs]: https://home-assistant.io/components/light.mochad/ -[light.tplink docs]: https://home-assistant.io/components/light.tplink/ -[light.tradfri docs]: https://home-assistant.io/components/light.tradfri/ -[logbook docs]: https://home-assistant.io/components/logbook/ -[media_extractor docs]: https://home-assistant.io/components/media_extractor/ -[media_player.denonavr docs]: https://home-assistant.io/components/media_player.denonavr/ -[media_player.liveboxplaytv docs]: https://home-assistant.io/components/media_player.liveboxplaytv/ -[media_player.samsungtv docs]: https://home-assistant.io/components/media_player.samsungtv/ -[media_player.sonos docs]: https://home-assistant.io/components/media_player.sonos/ -[media_player.ue_smart_radio docs]: https://home-assistant.io/components/media_player.ue_smart_radio/ -[media_player.webostv docs]: https://home-assistant.io/components/media_player.webostv/ -[media_player.yamaha_musiccast docs]: https://home-assistant.io/components/media_player.yamaha_musiccast/ -[media_player.ziggo_mediabox_xl docs]: https://home-assistant.io/components/media_player.ziggo_mediabox_xl/ -[mochad docs]: https://home-assistant.io/components/mochad/ -[neato docs]: https://home-assistant.io/components/neato/ -[notify.html5 docs]: https://home-assistant.io/components/notify.html5/ -[prometheus docs]: https://home-assistant.io/components/prometheus/ -[scene.vera docs]: https://home-assistant.io/components/scene.vera/ -[sensor.ads docs]: https://home-assistant.io/components/sensor.ads/ -[sensor.alpha_vantage docs]: https://home-assistant.io/components/sensor.alpha_vantage/ -[sensor.canary docs]: https://home-assistant.io/components/sensor.canary/ -[sensor.efergy docs]: https://home-assistant.io/components/sensor.efergy/ -[sensor.eliqonline docs]: https://home-assistant.io/components/sensor.eliqonline/ -[sensor.gearbest docs]: https://home-assistant.io/components/sensor.gearbest/ -[sensor.luftdaten docs]: https://home-assistant.io/components/sensor.luftdaten/ -[sensor.miflora docs]: https://home-assistant.io/components/sensor.miflora/ -[sensor.mqtt docs]: https://home-assistant.io/components/sensor.mqtt/ -[sensor.octoprint docs]: https://home-assistant.io/components/sensor.octoprint/ -[sensor.rest docs]: https://home-assistant.io/components/sensor.rest/ -[sensor.ripple docs]: https://home-assistant.io/components/sensor.ripple/ -[sensor.shodan docs]: https://home-assistant.io/components/sensor.shodan/ -[sensor.systemmonitor docs]: https://home-assistant.io/components/sensor.systemmonitor/ -[sensor.tesla docs]: https://home-assistant.io/components/sensor.tesla/ -[sensor.volvooncall docs]: https://home-assistant.io/components/sensor.volvooncall/ -[snips docs]: https://home-assistant.io/components/snips/ -[switch.ads docs]: https://home-assistant.io/components/switch.ads/ -[switch.mochad docs]: https://home-assistant.io/components/switch.mochad/ -[switch.tplink docs]: https://home-assistant.io/components/switch.tplink/ -[tellstick docs]: https://home-assistant.io/components/tellstick/ -[vera docs]: https://home-assistant.io/components/vera/ -[volvooncall docs]: https://home-assistant.io/components/volvooncall/ -[xiaomi_aqara docs]: https://home-assistant.io/components/xiaomi_aqara/ -[#11054]: https://github.com/home-assistant/home-assistant/pull/11054 -[#11185]: https://github.com/home-assistant/home-assistant/pull/11185 -[#11214]: https://github.com/home-assistant/home-assistant/pull/11214 -[#11227]: https://github.com/home-assistant/home-assistant/pull/11227 -[#11255]: https://github.com/home-assistant/home-assistant/pull/11255 -[#11256]: https://github.com/home-assistant/home-assistant/pull/11256 -[#11259]: https://github.com/home-assistant/home-assistant/pull/11259 -[#11261]: https://github.com/home-assistant/home-assistant/pull/11261 -[#11264]: https://github.com/home-assistant/home-assistant/pull/11264 -[#11272]: https://github.com/home-assistant/home-assistant/pull/11272 -[#11292]: https://github.com/home-assistant/home-assistant/pull/11292 -[#11313]: https://github.com/home-assistant/home-assistant/pull/11313 -[#11358]: https://github.com/home-assistant/home-assistant/pull/11358 -[#11387]: https://github.com/home-assistant/home-assistant/pull/11387 -[@CTLS]: https://github.com/CTLS -[@OddBloke]: https://github.com/OddBloke -[@OverloadUT]: https://github.com/OverloadUT -[@andreacampi]: https://github.com/andreacampi -[@jannau]: https://github.com/jannau -[@maxlaverse]: https://github.com/maxlaverse -[@mnoorenberghe]: https://github.com/mnoorenberghe -[@pvizeli]: https://github.com/pvizeli -[@rwa]: https://github.com/rwa -[@veleek]: https://github.com/veleek -[@ziotibia81]: https://github.com/ziotibia81 -[alexa.smart_home docs]: https://home-assistant.io/components/alexa.smart_home/ -[binary_sensor.concord232 docs]: https://home-assistant.io/components/binary_sensor.concord232/ -[binary_sensor.isy994 docs]: https://home-assistant.io/components/binary_sensor.isy994/ -[calendar.caldav docs]: https://home-assistant.io/components/calendar.caldav/ -[homematic docs]: https://home-assistant.io/components/homematic/ -[light.hue docs]: https://home-assistant.io/components/light.hue/ -[lock.sesame docs]: https://home-assistant.io/components/lock.sesame/ -[media_player.webostv docs]: https://home-assistant.io/components/media_player.webostv/ -[switch.modbus docs]: https://home-assistant.io/components/switch.modbus/ ]]> diff --git a/blog/categories/release-notes/index.html b/blog/categories/release-notes/index.html index cbda9ede02..c8a138af48 100644 --- a/blog/categories/release-notes/index.html +++ b/blog/categories/release-notes/index.html @@ -79,6 +79,27 @@

    2018

    +
    +
    diff --git a/blog/categories/survey/atom.xml b/blog/categories/survey/atom.xml index d4f3046736..0a05715825 100644 --- a/blog/categories/survey/atom.xml +++ b/blog/categories/survey/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Survey | Home Assistant]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/survey/index.html b/blog/categories/survey/index.html index 733d737bfb..44aa7160e2 100644 --- a/blog/categories/survey/index.html +++ b/blog/categories/survey/index.html @@ -136,6 +136,9 @@

    Recent Posts

    diff --git a/blog/categories/talks/atom.xml b/blog/categories/talks/atom.xml index 55eb2d5d9d..fc24da2a35 100644 --- a/blog/categories/talks/atom.xml +++ b/blog/categories/talks/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Talks | Home Assistant]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/talks/index.html b/blog/categories/talks/index.html index 768227c9bb..25f81555fe 100644 --- a/blog/categories/talks/index.html +++ b/blog/categories/talks/index.html @@ -137,6 +137,9 @@

    Recent Posts

    diff --git a/blog/categories/technology/atom.xml b/blog/categories/technology/atom.xml index 8f48ab0a1a..c96e698281 100644 --- a/blog/categories/technology/atom.xml +++ b/blog/categories/technology/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Technology | Home Assistant]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/technology/index.html b/blog/categories/technology/index.html index f13a0b4659..219022ce27 100644 --- a/blog/categories/technology/index.html +++ b/blog/categories/technology/index.html @@ -305,6 +305,9 @@

    Recent Posts

    diff --git a/blog/categories/user-stories/atom.xml b/blog/categories/user-stories/atom.xml index 74d9ec8ca9..8437d4819f 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]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/user-stories/index.html b/blog/categories/user-stories/index.html index defe3058fe..6cab2bc2af 100644 --- a/blog/categories/user-stories/index.html +++ b/blog/categories/user-stories/index.html @@ -158,6 +158,9 @@

    Recent Posts

    diff --git a/blog/categories/video/atom.xml b/blog/categories/video/atom.xml index 853b283ea4..73b7c0a4f7 100644 --- a/blog/categories/video/atom.xml +++ b/blog/categories/video/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Video | Home Assistant]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/video/index.html b/blog/categories/video/index.html index 4b5d9ec2b6..2a8551ac8c 100644 --- a/blog/categories/video/index.html +++ b/blog/categories/video/index.html @@ -267,6 +267,9 @@

    Recent Posts

    diff --git a/blog/categories/website/atom.xml b/blog/categories/website/atom.xml index 1ad3efc6aa..fc64bbfa0d 100644 --- a/blog/categories/website/atom.xml +++ b/blog/categories/website/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Website | Home Assistant]]> - 2018-03-09T15:53:23+00:00 + 2018-03-09T18:41:02+00:00 https://home-assistant.io/ diff --git a/blog/categories/website/index.html b/blog/categories/website/index.html index 1fe363c1f5..c2b6beb797 100644 --- a/blog/categories/website/index.html +++ b/blog/categories/website/index.html @@ -158,6 +158,9 @@

    Recent Posts

    diff --git a/blog/index.html b/blog/index.html index 0711e8572e..f8fa4a84f0 100644 --- a/blog/index.html +++ b/blog/index.html @@ -67,6 +67,112 @@
    +
    +
    +

    + 0.65: Rename entities, new filter sensor, UpCloud and Channels +

    +
    + + + 18 minutes reading time + + +
      +
    • Release-Notes
    • +
    +
    + Comments +
    +
    +
    +

    +

    Release 0.65 has arrived and oh boy, is it awesome. First off, in case you have missed the previous release notes and announcements: Starting with this release, Home Assistant has dropped support for Python 3.4. The minimum supported version is now Python 3.5.3. If you are on Hass.io or Docker, you’ll automatically be running the latest and greatest. If you’re on an older Hassbian installation or did your own Linux setup you’ll need to upgrade to at least Python 3.5.3.

    +

    Naming entities

    +

    With the introduction of the entity registry in 0.63, Home Assistant is making sure that the same devices always receive the same entity IDs. This release is taking it a step further by allowing users to change the name of a device from the frontend. Changing the name will be instantly applied and overrides whatever name the device is given by the integration. If you want to switch back to the name from the integration, set the name to blank.

    +

    This feature is, just like the entity registry, only available for integrations that provide unique IDs for their entities. Adding this to each integration is still a work in progress.

    +

    + Screencap of interaction with the UI to override the name of a light. + The new entity registry settings page in action. +

    +

    Filter sensor

    +

    The filter sensor is a new 2nd order sensor by @dgomes: it will consume data from a sensor entity and apply filters to it. For the initial implementation it comes with Low-pass, Outlier and Throttle filters. Expect more to be added in the future.

    +
    sensor:
    +  - platform: filter
    +    name: "filtered realistic humidity"
    +    entity_id: sensor.realistic_humidity
    +    filters:
    +      - filter: outlier
    +        window_size: 4
    +        radius: 4.0
    +      - filter: lowpass
    +        time_constant: 10
    +        precision: 2
    +
    +
    +

    + Chart showing a humidity sensor with a lot of spikes and a smooth graph produced by the new filter sensor. + Graph showing both the input sensor and the output of the filter sensor. +

    +

    Light Group

    +

    We have had some discussion lately and realized that our current group component is very limiting. Extending it would probably lead to more confusion so we’ve decided to take a new approach: groups that are designed to be part of a specific component. The first one in this series comes at the hand of @OttoWinter: the group light (docs).

    +

    The group light creates a single light inside Home Assistant that is representing a group of lights. All commands will be forwarded and the state is a combination of all the lights.

    +
    light:
    +  - platform: group
    +    name: Cool Light Group
    +    entities:
    +      - light.amazing_light
    +      - light.foobar
    +      - light.sun
    +
    +
    +

    HomeKit

    +

    HomeKit got some more upgrades. We’ve added support for temperature sensors in Fahrenheit, alarm systems, switches and thermostats. Just a few releases more and we should be able to cover it all.

    +

    Optional words for the Conversation component

    +

    The conversation component has always been a great introduction to controlling your house by voice. There is no hotword detection or powerful language engine behind it, but it gives a great intro to what is possible. Starting with this release, it will get a little bit more powerful with the introduction of optional words. To mark a word optional, wrap it in square brackets: Change the light to [the color] {color}.

    +
    # Example configuration.yaml entry
    +conversation:
    +  intents:
    +    LivingRoomTemperature:
    +     - What is the temperature in the living room
    +     - What is [the] living room temperature
    +
    +intent_script:
    +  LivingRoomTemperature:
    +    speech:
    +      text: It is currently  degrees in the living room.
    +
    +
    +

    + Screenshot of the frontend with the conversation panel open. + Have conversations with Home Assistant via the conversation component. +

    +

    New Platforms

    + +

    If you need help…

    +

    …don’t hesitate to use our very active forums or join us for a little chat. The release notes have comments enabled but it’s preferred if you use the former communication channels. Thanks.

    +

    Reporting Issues

    +

    Experiencing issues introduced by this release? Please report them in our issue tracker. Make sure to fill in all fields of the issue template.

    + Read on → +
    +
    +

    @@ -574,78 +680,6 @@ broadlink.send_packet_192_168_0_107 -> switch.broadlink_send_packet_192_168_0


    -
    -
    -

    - 0.60: Beckhoff/TwinCAT, WebDav, Gearbest, iAlarm -

    -
    - - - 10 minutes reading time - - -
      -
    • Release-Notes
    • -
    -
    - Comments -
    -
    -
    -

    -

    The biggest change for 0.60 will be covered in a separate blog post. Thus, we will keep it short here. Just one thing: This is the last release in 2017. We will be back to our bi-weekly release cycle in 2018.

    -

    A big “Thank you” to all people who supported us to make this release possible.

    -

    TwinCAT

    -

    With the brand-new ADS (automation device specification) component by @stlehmann allows you to hook Home Assistant into this fieldbus independent interface which is often used between Beckhoff devices running with TwinCAT.

    -

    WebDav calendar

    -

    Thanks to @maxlaverse Home Assistant support now WebDav calendars.

    -

    Tracking prices

    -

    With the new gearbest sensor there is now an additional sensor available to track the price of a product.

    -

    Financial details

    -

    Yahoo! has discontinued their financial service. To fill this gap we have now the alpha_vantage sensor which is intruded in this release and allows you to monitor the stock market.

    -

    New Platforms

    - -

    Release 0.60.1 - January 6

    - -

    If you need help…

    -

    …don’t hesitate to use our very active forums or join us for a little chat. The release notes have comments enabled but it’s preferred if you use the former communication channels. Thanks.

    -

    Reporting Issues

    -

    Experiencing issues introduced by this release? Please report them in our issue tracker. Make sure to fill in all fields of the issue template.

    - Read on → -
    -
    -
    diff --git a/blog/posts/10/index.html b/blog/posts/10/index.html index 2d169f7fc1..25b3327d3c 100644 --- a/blog/posts/10/index.html +++ b/blog/posts/10/index.html @@ -67,6 +67,41 @@
    +
    +
    +

    + We have a Raspberry Pi image now +

    +
    + + + 1 minute reading time + + +
      +
    • Technology
    • +
    +
    + Comments +
    +
    +
    +

    Today we’re happy to announce our brand new Raspberry Pi image! It is based on Raspbian Lite combined with HASS so we decided to call it Hassbian.

    +

    This image comes pre-installed with everything you need to get started with Home Assistant right away.

    +

    To get started, check out the installation instructions in the getting started section or watch the latest video by BRUHAutomation:

    +
    + +
    +

    Under the hood

    +

    It’s based on Raspbian Lite and generated with a fork of the same script that builds the official Raspbian images. For installation of HASS it follows the same install instructions as the Manual installation. Please note that this project has no association with the Raspberry Pi foundation or their projects.

    +

    On first boot the latest release of Home Assistant will be installed and can be reached after 3~5 minutes. Pre-installed on this image is the MQTT broker Mosquitto, Bluetooth support and settings for the homeassistant account to use the GPIO pins of the Raspberry Pi. Mosquitto is not activated by default.

    +

    As it is today there is no pre-compiled Z-Wave support but it can be installed by following the Getting started instructions for Z-Wave.

    +

    Happy Automating!

    +
    +
    +

    @@ -705,86 +740,6 @@ Heatmap


    -
    -
    -

    - 0.25: Custom frontend panels, Jupyter notebooks, DirecTV. -

    -
    - - - four minutes reading time - - -
      -
    • Release-Notes
    • -
    -
    - Comments -
    -
    -
    -

    When Home Assistant started the focus has always been on making a great developer experience. Allowing anyone to add support for their favorite devices to Home Assistant easily. This focus has been a great success since we now have 339 components and platforms!

    -

    Starting with this release, we are extending our extensibility to the frontend. Starting this release, any component can add its own page to the frontend. Examples of this today are the map, logbook and history. We are looking forward to all the crazy panels you’ll come up with!

    -

    We have also seen an exciting trend of people starting to visualize their Internet of Things data using Jupyter Notebooks, which are a great way to create and share documents that contain code, visualizations, and explanatory text. In case you missed it, the blog post by @kireyeu shows an advanced usecase while our Notebooks in the Home Assistant Notebooks repository cover the basics.

    -

    This release also includes a bunch of new integrations, among others three new media player platforms. This means that today Home Assistant can talk to 26 different media players!

    -

    The brand-new iFrame panel component allows you to add other websites as pages in the Home Assistant frontend. They will show up in the sidebar and can be used the same way as you open the frontend in your browser but all within one view.

    -

    I would like to do a shoutout to @fabianhjr. He has started adding typing data (PEP484) to the Home Assistant core. This will help us identify issues before they are released.

    -

    - -

    Hotfix 0.25.1 - August 1

    -
      -
    • Light - Z-Wave: Bring back delayed value update behavior (@jnewland)
    • -
    • Recorder: Properly close session after execute (@kellerza)
    • -
    • Media Player - Kodi: No longer block startup if connecting to wrong port (@shoekstra)
    • -
    • Downgrade voluptuous to 0.8.9 as it blocked the upgrade for some (@balloob)
    • -
    -

    Hotfix 0.25.2 - August 2

    -
      -
    • Hotfix to make sure Z-Wave locks work again. Thanks to @tobiebooth for the quick fix.
    • -
    -

    Breaking changes

    -
      -
    • Google Voice SMS notification support was removed.
    • -
    -
    -
    -

Are you not a programmer but still want to contribute to Home Assistant? Check out our list of entry-level issues for the Home Assistant website.

Hacktober fest logo

- - -
-
-
-

- We have a Raspberry Pi image now -

-
- - - 1 minute reading time - - -
    -
  • Technology
  • -
-
- Comments -
-
-
-

Today we’re happy to announce our brand new Raspberry Pi image! It is based on Raspbian Lite combined with HASS so we decided to call it Hassbian.

-

This image comes pre-installed with everything you need to get started with Home Assistant right away.

-

To get started, check out the installation instructions in the getting started section or watch the latest video by BRUHAutomation:

-
- -
-

Under the hood

-

It’s based on Raspbian Lite and generated with a fork of the same script that builds the official Raspbian images. For installation of HASS it follows the same install instructions as the Manual installation. Please note that this project has no association with the Raspberry Pi foundation or their projects.

-

On first boot the latest release of Home Assistant will be installed and can be reached after 3~5 minutes. Pre-installed on this image is the MQTT broker Mosquitto, Bluetooth support and settings for the homeassistant account to use the GPIO pins of the Raspberry Pi. Mosquitto is not activated by default.

-

As it is today there is no pre-compiled Z-Wave support but it can be installed by following the Getting started instructions for Z-Wave.

-

Happy Automating!


diff --git a/components/abode/index.html b/components/abode/index.html index fa86afd47f..e1cef07d58 100644 --- a/components/abode/index.html +++ b/components/abode/index.html @@ -336,6 +336,9 @@
  • Dyson
  • +
  • + Egardia +
  • Eight Sleep
  • @@ -519,6 +522,9 @@
  • USPS
  • +
  • + UpCloud +
  • Velbus
  • diff --git a/components/ads/index.html b/components/ads/index.html index 1959005770..64b39b0aa5 100644 --- a/components/ads/index.html +++ b/components/ads/index.html @@ -206,6 +206,9 @@
  • Dyson
  • +
  • + Egardia +
  • Eight Sleep
  • @@ -389,6 +392,9 @@
  • USPS
  • +
  • + UpCloud +
  • Velbus
  • diff --git a/components/alarm_control_panel.egardia/index.html b/components/alarm_control_panel.egardia/index.html index 40fd74b46c..a40d8746f2 100644 --- a/components/alarm_control_panel.egardia/index.html +++ b/components/alarm_control_panel.egardia/index.html @@ -74,58 +74,8 @@
    -

    The egardia platform enables the ability to control an Egardia/Woonveilig control panel. These alarm panels are known under different brand names across the world, including Woonveilig in the Netherlands. This was tested on the GATE-01, GATE-02 and GATE-03 versions of the Egardia/Woonveilig platform.

    -

    You will need to know the IP of your alarm panel on your local network. Test if you can login to the panel by browsing to the IP address and log in using your Egardia/Woonveilig account.

    -

    To enable the integration with your alarm panel, add the following lines to your configuration.yaml file:

    -
    # Example configuration.yaml entry
    -alarm_control_panel:
    -  - platform: egardia
    -    host: YOUR_HOST
    -    username: YOUR_USERNAME
    -    password: YOUR_PASSWORD
    -
    -
    -

    Configuration variables:

    -
      -
    • host (Required): The local IP address of the Egardia/Woonveilig alarm panel.
    • -
    • username (Required): Username for the Egardia/Woonveilig account.
    • -
    • password (Required): Password for Egardia/Woonveilig account.
    • -
    • version (Optional): The version of the Egardia system. GATE-01, GATE-02 and GATE-03 are currently supported. Defaults to GATE-01.
    • -
    • port (Optional): The port of the alarm panel. Defaults to 80.
    • -
    • name (Optional): Name to use for the alarm panel. Defaults to Egardia.
    • -
    • report_server_enabled (Optional): Enable reporting by server. Defaults to False.
    • -
    • report_server_port (Optional): Port of the Egardia server. Defaults to 52010.
    • -
    • report_server_codes list (Optional): List of codes for the different states.
    • -
    -

    Note that this basic configuration will only enable you to read the armed/armed away/disarmed status of your alarm and will not update the status if the alarm is triggered. This is because of how Egardia built their system. The alarm triggers normally go through their servers. -You can change this, however, using the following procedure. This is a more advanced configuration.

    -
      -
    1. Log in into your alarm system’s control panel. You will need to access http://[IP of your control panel]. You know this already since you need it in the basic configuration from above. Log in to the control panel with your Egardia/Woonveilig username and password.
    2. -
    3. Once logged in, go to System Settings, Report and change the Server Address for your primary server to the IP or hostname of your Home Assistant machine. You can leave the port number set to 52010 or change it to anything you like. Make sure to change the settings of the primary server otherwise the messages will not come through. Note that this will limit (or fully stop) the number of alarm messages you will get through Egardia’s / Woonveilig services. Maybe, that is just what you want. Make sure to save your settings by selecting ‘OK’.
    4. -
    5. On your Home Assistant machine run $ sudo python3 egardiaserver.py. Refer to the python-egardia repository for detailed documentation on parameters. This will receive status codes from your alarm control panel and display them. You will need the codes to include in your configuration.yaml. Make sure to change the status of your alarm to all states (disarm, arm, home) by all means possible (all users, remotes, web login, app) as well as trigger the alarm in all ways possible to get 100% coverage. Before triggering the alarm it might be good to disable the siren temporarily (can be done in Panel Settings).
    6. -
    7. Once you have the codes, update your configuration.yaml: -
       # Example configuration.yaml entry
      - alarm_control_panel:
      -  - platform: egardia
      -    host: YOUR_HOST
      -    username: YOUR_USERNAME
      -    password: YOUR_PASSWORD
      -     report_server_enabled: True
      -     report_server_port: PORT_OF_EGARDIASERVER (optional, defaults to 52010)
      -     report_server_codes:
      -       arm: XXXXXXXXXXXXXXXX, XXXXXXXXXXXXXXXX
      -       disarm: XXXXXXXXXXXXXXXX, XXXXXXXXXXXXXXXX
      -       home: XXXXXXXXXXXXXXXX
      -       triggered: XXXXXXXXXXXXXXXX, XXXXXXXXXXXXXXXX, XXXXXXXXXXXXXXXX
      -       ignore: XXXXXXXXXXXXXXXX
      -
      -
      -
    8. -
    -

    Note that for triggered, arm and disarm multiple codes can be entered since each sensor triggers with a different code and each user of the system has its own arm and disarm codes. Also note that your system will do regular system checks which will be reported as well. Since Home Assistant provides no way of handling them properly, you can enter those codes as ignore (again, multiple codes can be used here). The egardia component will ignore these codes and continue returning the old status if it receives any of the codes that are listed as ignore. This is useful for example when you have armed your alarm at night: normally a system check will occur at least once during the night and if that code is not specified anywhere Home Assistant will set the status of the alarm to its default, which is unarmed. This is in fact wrong. Listing the code as ignore changes this behavior and Home Assistant will continue to show the status the alarm is in (disarm, arm, home, triggered) even when system checks occur.

    -
      -
    1. Test your setup and enjoy. The component will update if the alarm status changes, including triggers. You can use this to build your own automations and send notifications as you wish. Note: previous versions required a separate egardiaserver to be set up. This is no longer necessary and corresponding system services can be removed (using systemctl).
    2. -
    +

    The egardia platform allows you to integrate your Egardia/Woonveilig alarm control panel in Home Assistant. +You will need to set up your Egardia hub.

    diff --git a/components/sensor.comfoconnect/index.html b/components/sensor.comfoconnect/index.html index 23d072c2d1..dfd161db85 100644 --- a/components/sensor.comfoconnect/index.html +++ b/components/sensor.comfoconnect/index.html @@ -219,6 +219,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -270,6 +273,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -381,6 +387,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -486,6 +495,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.command_line/index.html b/components/sensor.command_line/index.html index e598b2b1c6..3e9fd8eb96 100644 --- a/components/sensor.command_line/index.html +++ b/components/sensor.command_line/index.html @@ -336,6 +336,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -387,6 +390,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -498,6 +504,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -603,6 +612,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.cpuspeed/index.html b/components/sensor.cpuspeed/index.html index 8f50cb7add..68d15f13bb 100644 --- a/components/sensor.cpuspeed/index.html +++ b/components/sensor.cpuspeed/index.html @@ -182,6 +182,9 @@
  • System Monitor
  • +
  • + UpCloud Binary Sensor +
  • Vultr Binary Sensor
  • diff --git a/components/sensor.crimereports/index.html b/components/sensor.crimereports/index.html index 9690581c57..bdf26ff4a6 100644 --- a/components/sensor.crimereports/index.html +++ b/components/sensor.crimereports/index.html @@ -272,6 +272,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -323,6 +326,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -434,6 +440,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -539,6 +548,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.cups/index.html b/components/sensor.cups/index.html index a0d2dc0b59..e82a97d2ad 100644 --- a/components/sensor.cups/index.html +++ b/components/sensor.cups/index.html @@ -207,6 +207,9 @@ You will need to install the python3-dev
  • System Monitor
  • +
  • + UpCloud Binary Sensor +
  • Vultr Binary Sensor
  • diff --git a/components/sensor.daikin/index.html b/components/sensor.daikin/index.html index df90d0d814..9cb51aa9f3 100644 --- a/components/sensor.daikin/index.html +++ b/components/sensor.daikin/index.html @@ -268,6 +268,9 @@ Please note, the daikin platform integrat
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -319,6 +322,9 @@ Please note, the daikin platform integrat
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -430,6 +436,9 @@ Please note, the daikin platform integrat
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -535,6 +544,9 @@ Please note, the daikin platform integrat
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.deconz/index.html b/components/sensor.deconz/index.html index 23bfada75c..8d839d5b2d 100644 --- a/components/sensor.deconz/index.html +++ b/components/sensor.deconz/index.html @@ -265,6 +265,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -316,6 +319,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -427,6 +433,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -532,6 +541,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.discogs/index.html b/components/sensor.discogs/index.html index e5db176fd2..197ae5b2c8 100644 --- a/components/sensor.discogs/index.html +++ b/components/sensor.discogs/index.html @@ -233,6 +233,9 @@ You can generate a token from your profile’s InfluxDB Sensor +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -395,6 +401,9 @@ You can generate a token from your profile’s Zehnder ComfoAir Q Ventilation sensors +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.dnsip/index.html b/components/sensor.dnsip/index.html index 05e1590591..0b11861e11 100644 --- a/components/sensor.dnsip/index.html +++ b/components/sensor.dnsip/index.html @@ -241,6 +241,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -292,6 +295,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -403,6 +409,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -508,6 +517,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.dovado/index.html b/components/sensor.dovado/index.html index 7c662deb39..547b7b0f2b 100644 --- a/components/sensor.dovado/index.html +++ b/components/sensor.dovado/index.html @@ -201,6 +201,9 @@
  • System Monitor
  • +
  • + UpCloud Binary Sensor +
  • Vultr Binary Sensor
  • diff --git a/components/sensor.dsmr/index.html b/components/sensor.dsmr/index.html index 194039fb8a..d242d0dfe1 100644 --- a/components/sensor.dsmr/index.html +++ b/components/sensor.dsmr/index.html @@ -237,6 +237,9 @@
  • SMA Solar WebConnect
  • +
  • + Sense +
  • diff --git a/components/sensor.dte_energy_bridge/index.html b/components/sensor.dte_energy_bridge/index.html index 8256e088a9..bcd5fb48be 100644 --- a/components/sensor.dte_energy_bridge/index.html +++ b/components/sensor.dte_energy_bridge/index.html @@ -147,6 +147,9 @@
  • SMA Solar WebConnect
  • +
  • + Sense +
  • diff --git a/components/sensor.dweet/index.html b/components/sensor.dweet/index.html index 1774cc1400..8575cd2e2a 100644 --- a/components/sensor.dweet/index.html +++ b/components/sensor.dweet/index.html @@ -267,6 +267,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -318,6 +321,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -429,6 +435,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -534,6 +543,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.dyson/index.html b/components/sensor.dyson/index.html index 177168949d..92e58e1321 100644 --- a/components/sensor.dyson/index.html +++ b/components/sensor.dyson/index.html @@ -231,6 +231,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -282,6 +285,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -393,6 +399,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -498,6 +507,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.ebox/index.html b/components/sensor.ebox/index.html index 636191141b..0728eed593 100644 --- a/components/sensor.ebox/index.html +++ b/components/sensor.ebox/index.html @@ -244,6 +244,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -295,6 +298,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -406,6 +412,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -511,6 +520,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.ecobee/index.html b/components/sensor.ecobee/index.html index a12545d9aa..5ce6d7f998 100644 --- a/components/sensor.ecobee/index.html +++ b/components/sensor.ecobee/index.html @@ -162,6 +162,9 @@
  • Ecobee Sensor
  • +
  • + Egardia Binary Sensor +
  • Eight Sleep Binary Sensor
  • diff --git a/components/sensor.efergy/index.html b/components/sensor.efergy/index.html index 9025dc7a19..d0c4164233 100644 --- a/components/sensor.efergy/index.html +++ b/components/sensor.efergy/index.html @@ -181,6 +181,9 @@ negative number of minutes your timezone is ahead/behind UTC time.
  • SMA Solar WebConnect
  • +
  • + Sense +
  • diff --git a/components/sensor.eight_sleep/index.html b/components/sensor.eight_sleep/index.html index 898e5f177c..59a5480711 100644 --- a/components/sensor.eight_sleep/index.html +++ b/components/sensor.eight_sleep/index.html @@ -223,6 +223,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -274,6 +277,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -385,6 +391,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -490,6 +499,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.eliqonline/index.html b/components/sensor.eliqonline/index.html index 8547accf23..63d2c843ae 100644 --- a/components/sensor.eliqonline/index.html +++ b/components/sensor.eliqonline/index.html @@ -145,6 +145,9 @@
  • SMA Solar WebConnect
  • +
  • + Sense +
  • diff --git a/components/sensor.emoncms/index.html b/components/sensor.emoncms/index.html index 2e999886ce..bd43c2e545 100644 --- a/components/sensor.emoncms/index.html +++ b/components/sensor.emoncms/index.html @@ -320,6 +320,9 @@ If the id property is anything but File size sensor +
  • + Filter Sensor +
  • Folder sensor
  • @@ -371,6 +374,9 @@ If the id property is anything but InfluxDB Sensor +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -482,6 +488,9 @@ If the id property is anything but Shodan Sensor +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -587,6 +596,9 @@ If the id property is anything but Zehnder ComfoAir Q Ventilation sensors +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.enocean/index.html b/components/sensor.enocean/index.html index c048170b78..17498cbbac 100644 --- a/components/sensor.enocean/index.html +++ b/components/sensor.enocean/index.html @@ -242,6 +242,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -293,6 +296,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -404,6 +410,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -509,6 +518,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.envirophat/index.html b/components/sensor.envirophat/index.html index 922521a650..f449d150fc 100644 --- a/components/sensor.envirophat/index.html +++ b/components/sensor.envirophat/index.html @@ -313,6 +313,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -364,6 +367,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -475,6 +481,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -580,6 +589,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.envisalink/index.html b/components/sensor.envisalink/index.html index 9b1d2aae66..8100716976 100644 --- a/components/sensor.envisalink/index.html +++ b/components/sensor.envisalink/index.html @@ -226,6 +226,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -277,6 +280,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -388,6 +394,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -493,6 +502,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.fail2ban/index.html b/components/sensor.fail2ban/index.html index 6d96da4fc1..b78086b692 100644 --- a/components/sensor.fail2ban/index.html +++ b/components/sensor.fail2ban/index.html @@ -352,6 +352,9 @@ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for File size sensor +
  • + Filter Sensor +
  • Folder sensor
  • @@ -403,6 +406,9 @@ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for InfluxDB Sensor +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -514,6 +520,9 @@ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for Shodan Sensor +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -619,6 +628,9 @@ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for Zehnder ComfoAir Q Ventilation sensors +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.fastdotcom/index.html b/components/sensor.fastdotcom/index.html index 47d0990dc6..30030e8626 100644 --- a/components/sensor.fastdotcom/index.html +++ b/components/sensor.fastdotcom/index.html @@ -199,6 +199,9 @@ Currently fast.com only supports measuring download bandwidth. If you want to me
  • System Monitor
  • +
  • + UpCloud Binary Sensor +
  • Vultr Binary Sensor
  • diff --git a/components/sensor.fedex/index.html b/components/sensor.fedex/index.html index caf89a7663..fb53e8b561 100644 --- a/components/sensor.fedex/index.html +++ b/components/sensor.fedex/index.html @@ -244,6 +244,9 @@ The FedEx sensor logs into the FedEx Delivery Manager website to scrape package
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -295,6 +298,9 @@ The FedEx sensor logs into the FedEx Delivery Manager website to scrape package
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -406,6 +412,9 @@ The FedEx sensor logs into the FedEx Delivery Manager website to scrape package
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -511,6 +520,9 @@ The FedEx sensor logs into the FedEx Delivery Manager website to scrape package
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.fido/index.html b/components/sensor.fido/index.html index 4ee262765e..23e36b8e36 100644 --- a/components/sensor.fido/index.html +++ b/components/sensor.fido/index.html @@ -253,6 +253,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -304,6 +307,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -415,6 +421,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -520,6 +529,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.file/index.html b/components/sensor.file/index.html index e7142b55bb..3f29e892dd 100644 --- a/components/sensor.file/index.html +++ b/components/sensor.file/index.html @@ -252,6 +252,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -303,6 +306,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -414,6 +420,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -519,6 +528,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.filesize/index.html b/components/sensor.filesize/index.html index e6a3216d8b..fed4dc75f0 100644 --- a/components/sensor.filesize/index.html +++ b/components/sensor.filesize/index.html @@ -227,6 +227,9 @@ Add to your config:

  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -278,6 +281,9 @@ Add to your config:

  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -389,6 +395,9 @@ Add to your config:

  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -494,6 +503,9 @@ Add to your config:

  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.filter/index.html b/components/sensor.filter/index.html new file mode 100644 index 0000000000..04f8b0f55b --- /dev/null +++ b/components/sensor.filter/index.html @@ -0,0 +1,655 @@ + + + + + + + + + Filter Sensor - Home Assistant + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    +

    + Filter Sensor +

    +
    +
    +

    The filter platform enables sensors that process the states of other entities.

    +

    filter applies a signal processing algorithm to a sensor, previous and current states, and generates a new state given the chosen algorithm.

    +

    + +

    +

    To enable Filter Sensors in your installation, add the following to your configuration.yaml file:

    +
    # Example configuration.yaml entry
    +sensor:
    +  - platform: filter
    +    name: "filtered realistic humidity"
    +    entity_id: sensor.realistic_humidity
    +    filters:
    +      - filter: outlier
    +        window_size: 4
    +        radius: 4.0
    +      - filter: lowpass
    +        time_constant: 10
    +        precision: 2
    +
    +
    +

    Filters can be chained and are applied according to the order present in the configuration file.

    +
    +

    Configuration Variables

    +
    +
    entity_id
    +
    +

    (string)(Required)The entity ID of the sensor to be filtered.

    +
    +
    name
    +
    +

    (string)(Optional)Name to use in the frontend.

    +
    +
    filters
    +
    +

    (map)(Required)Filters to be used.

    +
    +
    +
    +
    filter
    +
    +

    (string)(Required)Algorithm to be used to filter data. Available filters are lowpass, outlier and throttle.

    +
    +
    window_size
    +
    +

    (int)(Optional)Size of the window of previous states.

    +

    Default value: 5

    +
    +
    precision
    +
    +

    (int)(Optional)See lowpass filter. Defines the precision of the filtered state, through the argument of round().

    +

    Default value: None

    +
    +
    time_constant
    +
    +

    (int)(Optional)See lowpass filter. Loosely relates to the amount of time it takes for a state to influence the output.

    +

    Default value: 10

    +
    +
    radius
    +
    +

    (float)(Optional)See outlier filter. Band radius from median of previous states.

    +

    Default value: 2.0

    +
    +
    +
    +
    +
    +

    Filters

    +

    Low-pass

    +

    The Low-pass filter (lowpass) is one of signal processing most common filters, as it smooths data by shortcuting peaks and valleys.

    +

    The included Low-pass filter is very basic and is based on a moving average, in which the previous data point is weighted with the new data point.

    +
    B = 1.0 / time_constant
    +A = 1.0 - B
    +LowPass(state) = A * previous_state + B * state
    +
    +
    +

    The returned value is rounded to the number of decimals defined in (precision).

    +

    Outlier

    +

    The Outlier filter (outlier) is a basic Band-stop filter, as it cuts out any value outside a specific range.

    +

    The included Outlier filter will discard any value beyond a band centered on the median of the previous values, replacing it with the median value of the previous values. If inside the band, the

    +
    distance = abs(state - median(previous_states))
    +
    +if distance > radius:
    +    median(previous_states)
    +else:
    +    state
    +
    +
    +

    Throttle

    +

    The Throttle filter (throttle) will only update the state of the sensor for the first state in the window. This means the filter will skip all other values.

    +

    To adjust the rate you need to set the window_size. To throttle a sensor down to 10%, the window_size should be set to 10, for 50% should be set to 2.

    +

    This filter is relevant when you have a sensor which produces states at a very high-rate, which you might want to throttle down for storing or visualization purposes.

    +
    +
    + +
    +
    + + + + + + + diff --git a/components/sensor.fitbit/index.html b/components/sensor.fitbit/index.html index 12137bee3f..dd4c054bd1 100644 --- a/components/sensor.fitbit/index.html +++ b/components/sensor.fitbit/index.html @@ -91,6 +91,7 @@
    • monitored_resources (Optional): Resource to monitor. Defaults to activities/steps.
    • clock_format (Optional): Format to use for sleep/startTime resource. Accepts 12H or 24H. Defaults to 24H.
    • +
    • unit_system (Optional): Unit system to use for measurements. Accepts default, metric, en_US or en_GB. Defaults to default.

    Below is the list of resources that you can add to monitored_resources. One sensor is exposed for every resource.

    activities/activityCalories
    diff --git a/components/sensor.folder/index.html b/components/sensor.folder/index.html
    index b856e69913..5ffb7e91fb 100644
    --- a/components/sensor.folder/index.html
    +++ b/components/sensor.folder/index.html
    @@ -231,6 +231,9 @@
             
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -282,6 +285,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -393,6 +399,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -498,6 +507,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.fritzbox_callmonitor/index.html b/components/sensor.fritzbox_callmonitor/index.html index ebbd8819ff..b60fd4e8be 100644 --- a/components/sensor.fritzbox_callmonitor/index.html +++ b/components/sensor.fritzbox_callmonitor/index.html @@ -230,6 +230,9 @@ It can also access the internal phone book of the router to look up the names co
  • System Monitor
  • +
  • + UpCloud Binary Sensor +
  • Vultr Binary Sensor
  • diff --git a/components/sensor.fritzbox_netmonitor/index.html b/components/sensor.fritzbox_netmonitor/index.html index 57e06b34ee..9fb896d66d 100644 --- a/components/sensor.fritzbox_netmonitor/index.html +++ b/components/sensor.fritzbox_netmonitor/index.html @@ -241,6 +241,9 @@ If you are working with the All-in-One installation, you may also need to execut
  • System Monitor
  • +
  • + UpCloud Binary Sensor +
  • Vultr Binary Sensor
  • diff --git a/components/sensor.gearbest/index.html b/components/sensor.gearbest/index.html index 618b814e3d..df436a8db0 100644 --- a/components/sensor.gearbest/index.html +++ b/components/sensor.gearbest/index.html @@ -267,6 +267,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -318,6 +321,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -429,6 +435,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -534,6 +543,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.geizhals/index.html b/components/sensor.geizhals/index.html index 99d5f9655d..d03edea069 100644 --- a/components/sensor.geizhals/index.html +++ b/components/sensor.geizhals/index.html @@ -238,6 +238,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -289,6 +292,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -400,6 +406,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -505,6 +514,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.geo_rss_events/index.html b/components/sensor.geo_rss_events/index.html index 6d25c8d228..8b54e45ae4 100644 --- a/components/sensor.geo_rss_events/index.html +++ b/components/sensor.geo_rss_events/index.html @@ -285,6 +285,9 @@ incidents from the NSW Rural Fire Service.

  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -336,6 +339,9 @@ incidents from the NSW Rural Fire Service.

  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -447,6 +453,9 @@ incidents from the NSW Rural Fire Service.

  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -552,6 +561,9 @@ incidents from the NSW Rural Fire Service.

  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.gitter/index.html b/components/sensor.gitter/index.html index 5c32edc7de..e6840ef6d3 100644 --- a/components/sensor.gitter/index.html +++ b/components/sensor.gitter/index.html @@ -221,6 +221,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -272,6 +275,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -383,6 +389,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -488,6 +497,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.glances/index.html b/components/sensor.glances/index.html index 10f050497f..1d35c83fdc 100644 --- a/components/sensor.glances/index.html +++ b/components/sensor.glances/index.html @@ -234,6 +234,9 @@ Glances web server started on http://0.0.0.0:61208/
  • System Monitor
  • +
  • + UpCloud Binary Sensor +
  • Vultr Binary Sensor
  • diff --git a/components/sensor.google_wifi/index.html b/components/sensor.google_wifi/index.html index 3857b07b39..78d89659de 100644 --- a/components/sensor.google_wifi/index.html +++ b/components/sensor.google_wifi/index.html @@ -194,6 +194,9 @@
  • System Monitor
  • +
  • + UpCloud Binary Sensor +
  • Vultr Binary Sensor
  • diff --git a/components/sensor.gpsd/index.html b/components/sensor.gpsd/index.html index ed7448347e..9d7d161e01 100644 --- a/components/sensor.gpsd/index.html +++ b/components/sensor.gpsd/index.html @@ -244,6 +244,9 @@ Escape character is '^]'.
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -295,6 +298,9 @@ Escape character is '^]'.
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -406,6 +412,9 @@ Escape character is '^]'.
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -511,6 +520,9 @@ Escape character is '^]'.
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.haveibeenpwned/index.html b/components/sensor.haveibeenpwned/index.html index d578191bdc..f365eac107 100644 --- a/components/sensor.haveibeenpwned/index.html +++ b/components/sensor.haveibeenpwned/index.html @@ -237,6 +237,9 @@ account has been breached as well as the added date of the breach data. This dat
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -288,6 +291,9 @@ account has been breached as well as the added date of the breach data. This dat
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -399,6 +405,9 @@ account has been breached as well as the added date of the breach data. This dat
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -504,6 +513,9 @@ account has been breached as well as the added date of the breach data. This dat
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.hddtemp/index.html b/components/sensor.hddtemp/index.html index 3b2b010125..4832a9d0ce 100644 --- a/components/sensor.hddtemp/index.html +++ b/components/sensor.hddtemp/index.html @@ -190,6 +190,9 @@
  • System Monitor
  • +
  • + UpCloud Binary Sensor +
  • Vultr Binary Sensor
  • diff --git a/components/sensor.history_stats/index.html b/components/sensor.history_stats/index.html index c615cc5ef7..ee82d5b4ac 100644 --- a/components/sensor.history_stats/index.html +++ b/components/sensor.history_stats/index.html @@ -317,6 +317,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -368,6 +371,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -479,6 +485,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -584,6 +593,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.hive/index.html b/components/sensor.hive/index.html index 6c4dc60684..b8f7decb52 100644 --- a/components/sensor.hive/index.html +++ b/components/sensor.hive/index.html @@ -234,6 +234,9 @@ Full configuration details can be found on the main
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -285,6 +288,9 @@ Full configuration details can be found on the main
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -396,6 +402,9 @@ Full configuration details can be found on the main
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -501,6 +510,9 @@ Full configuration details can be found on the main
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.homematic/index.html b/components/sensor.homematic/index.html index e3ce900c97..65238ed635 100644 --- a/components/sensor.homematic/index.html +++ b/components/sensor.homematic/index.html @@ -235,6 +235,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -286,6 +289,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -397,6 +403,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -502,6 +511,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.hp_ilo/index.html b/components/sensor.hp_ilo/index.html index ae9fd418b2..98bfd3356e 100644 --- a/components/sensor.hp_ilo/index.html +++ b/components/sensor.hp_ilo/index.html @@ -253,6 +253,9 @@ Not every hardware supports all values.
  • System Monitor
  • +
  • + UpCloud Binary Sensor +
  • Vultr Binary Sensor
  • diff --git a/components/sensor.http/index.html b/components/sensor.http/index.html index c715a0e9e3..e870233c26 100644 --- a/components/sensor.http/index.html +++ b/components/sensor.http/index.html @@ -258,6 +258,9 @@ You should choose a unique device name (DEVICE_NAME) to avoid clashes with other
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -309,6 +312,9 @@ You should choose a unique device name (DEVICE_NAME) to avoid clashes with other
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -420,6 +426,9 @@ You should choose a unique device name (DEVICE_NAME) to avoid clashes with other
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -525,6 +534,9 @@ You should choose a unique device name (DEVICE_NAME) to avoid clashes with other
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.htu21d/index.html b/components/sensor.htu21d/index.html index b0420de878..12797e42af 100644 --- a/components/sensor.htu21d/index.html +++ b/components/sensor.htu21d/index.html @@ -284,6 +284,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -335,6 +338,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -446,6 +452,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -551,6 +560,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.hydroquebec/index.html b/components/sensor.hydroquebec/index.html index 84da0164cc..405ee368e9 100644 --- a/components/sensor.hydroquebec/index.html +++ b/components/sensor.hydroquebec/index.html @@ -178,6 +178,9 @@ Multi contracts accounts are supported only from Home Assistant v0.40.
  • SMA Solar WebConnect
  • +
  • + Sense +
  • diff --git a/components/sensor.ihc/index.html b/components/sensor.ihc/index.html index 1aa7f7c425..f1ddd9a985 100644 --- a/components/sensor.ihc/index.html +++ b/components/sensor.ihc/index.html @@ -272,6 +272,9 @@ For more information about IHC resource ids see InfluxDB Sensor +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -434,6 +440,9 @@ For more information about IHC resource ids see Zehnder ComfoAir Q Ventilation sensors +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.imap/index.html b/components/sensor.imap/index.html index 6501a46c3b..adae253965 100644 --- a/components/sensor.imap/index.html +++ b/components/sensor.imap/index.html @@ -230,6 +230,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -281,6 +284,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -392,6 +398,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -497,6 +506,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.imap_email_content/index.html b/components/sensor.imap_email_content/index.html index d7f2fd8b03..56742a3656 100644 --- a/components/sensor.imap_email_content/index.html +++ b/components/sensor.imap_email_content/index.html @@ -241,6 +241,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -292,6 +295,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -403,6 +409,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -508,6 +517,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.influxdb/index.html b/components/sensor.influxdb/index.html index 27957eee51..1b8813955e 100644 --- a/components/sensor.influxdb/index.html +++ b/components/sensor.influxdb/index.html @@ -281,6 +281,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -332,6 +335,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -443,6 +449,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -548,6 +557,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.insteon_plm/index.html b/components/sensor.insteon_plm/index.html new file mode 100644 index 0000000000..653509b3d5 --- /dev/null +++ b/components/sensor.insteon_plm/index.html @@ -0,0 +1,585 @@ + + + + + + + + + Insteon PLM Sensor - Home Assistant + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    +

    + Insteon PLM Sensor +

    +
    +
    +

    The insteon_plm sensor platform lets you control your sensors through +an INSTEON PowerLinc Modem (PLM) device connected directly to your system on a +USB or serial port. To add support, set up the primary insteon_plm +component.

    +
    +
    + +
    +
    + + + + + + + diff --git a/components/sensor.isy994/index.html b/components/sensor.isy994/index.html index 5e3a1b492d..3df2ee7d41 100644 --- a/components/sensor.isy994/index.html +++ b/components/sensor.isy994/index.html @@ -235,6 +235,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -286,6 +289,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -397,6 +403,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -502,6 +511,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.juicenet/index.html b/components/sensor.juicenet/index.html index 64b53d9870..56a384e07e 100644 --- a/components/sensor.juicenet/index.html +++ b/components/sensor.juicenet/index.html @@ -228,6 +228,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -279,6 +282,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -390,6 +396,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -495,6 +504,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.kira/index.html b/components/sensor.kira/index.html index f6bd0eb782..5c27882001 100644 --- a/components/sensor.kira/index.html +++ b/components/sensor.kira/index.html @@ -223,6 +223,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -274,6 +277,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -385,6 +391,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -490,6 +499,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.knx/index.html b/components/sensor.knx/index.html index 1a688af4a8..864c995cea 100644 --- a/components/sensor.knx/index.html +++ b/components/sensor.knx/index.html @@ -259,6 +259,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -310,6 +313,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -421,6 +427,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -526,6 +535,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.kwb/index.html b/components/sensor.kwb/index.html index a0178f1b6e..07cfa6bc88 100644 --- a/components/sensor.kwb/index.html +++ b/components/sensor.kwb/index.html @@ -249,6 +249,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -300,6 +303,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -411,6 +417,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -516,6 +525,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.lacrosse/index.html b/components/sensor.lacrosse/index.html index 0357b733c0..4440993b2b 100644 --- a/components/sensor.lacrosse/index.html +++ b/components/sensor.lacrosse/index.html @@ -308,6 +308,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -359,6 +362,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -470,6 +476,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -575,6 +584,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.linux_battery/index.html b/components/sensor.linux_battery/index.html index 68cff8fcd2..3f40b6d9b2 100644 --- a/components/sensor.linux_battery/index.html +++ b/components/sensor.linux_battery/index.html @@ -198,6 +198,9 @@
  • System Monitor
  • +
  • + UpCloud Binary Sensor +
  • Vultr Binary Sensor
  • diff --git a/components/sensor.loop_energy/index.html b/components/sensor.loop_energy/index.html index 14a772b125..95546fc346 100644 --- a/components/sensor.loop_energy/index.html +++ b/components/sensor.loop_energy/index.html @@ -168,6 +168,9 @@
  • SMA Solar WebConnect
  • +
  • + Sense +
  • diff --git a/components/sensor.luftdaten/index.html b/components/sensor.luftdaten/index.html index f04223f8bd..3664ba0a00 100644 --- a/components/sensor.luftdaten/index.html +++ b/components/sensor.luftdaten/index.html @@ -134,8 +134,16 @@ +
    show_on_map
    +
    +

    (boolean)(Optional)Option to show the position of the sensor on the map.

    +

    Default value: false

    +
    +

    +If you set show_on_map to True then the location attributes are named latitude and longitude. The default name of the location attributes is lat and long to avoid showing them on the map. +

    Not all sensors provide all conditions. Also, it’s possible that the sensor values are not available all the time. To check what a sensor is publishing use curl:

    $ curl https://api.luftdaten.info/v1/sensor/[sensorid]/
     
    diff --git a/components/sensor.melissa/index.html b/components/sensor.melissa/index.html index cfd162d3c7..a4bd38a95a 100644 --- a/components/sensor.melissa/index.html +++ b/components/sensor.melissa/index.html @@ -224,6 +224,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -275,6 +278,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -386,6 +392,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -491,6 +500,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.mercedesme/index.html b/components/sensor.mercedesme/index.html index b7b6a15140..763e09845f 100644 --- a/components/sensor.mercedesme/index.html +++ b/components/sensor.mercedesme/index.html @@ -227,6 +227,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -278,6 +281,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -389,6 +395,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -494,6 +503,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.mfi/index.html b/components/sensor.mfi/index.html index ca8f43abf6..ff8e74b2a4 100644 --- a/components/sensor.mfi/index.html +++ b/components/sensor.mfi/index.html @@ -237,6 +237,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -288,6 +291,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -399,6 +405,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -504,6 +513,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.mhz19/index.html b/components/sensor.mhz19/index.html index 64fd349108..d8f49ab6c3 100644 --- a/components/sensor.mhz19/index.html +++ b/components/sensor.mhz19/index.html @@ -239,6 +239,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -290,6 +293,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -401,6 +407,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -506,6 +515,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.min_max/index.html b/components/sensor.min_max/index.html index 2ab0433366..33ba21544a 100644 --- a/components/sensor.min_max/index.html +++ b/components/sensor.min_max/index.html @@ -236,6 +236,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -287,6 +290,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -398,6 +404,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -503,6 +512,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.modbus/index.html b/components/sensor.modbus/index.html index e8296c8c42..940b76eac4 100644 --- a/components/sensor.modbus/index.html +++ b/components/sensor.modbus/index.html @@ -288,6 +288,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -339,6 +342,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -450,6 +456,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -555,6 +564,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.modem_callerid/index.html b/components/sensor.modem_callerid/index.html index a8e7b89ef4..64da3e1d77 100644 --- a/components/sensor.modem_callerid/index.html +++ b/components/sensor.modem_callerid/index.html @@ -259,6 +259,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -310,6 +313,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -421,6 +427,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -526,6 +535,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.mold_indicator/index.html b/components/sensor.mold_indicator/index.html index 059cee85e9..00e828bfad 100644 --- a/components/sensor.mold_indicator/index.html +++ b/components/sensor.mold_indicator/index.html @@ -235,6 +235,9 @@ With the three measured temperatures (in Celsius or Fahrenheit), the calibration
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -286,6 +289,9 @@ With the three measured temperatures (in Celsius or Fahrenheit), the calibration
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -397,6 +403,9 @@ With the three measured temperatures (in Celsius or Fahrenheit), the calibration
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -502,6 +511,9 @@ With the three measured temperatures (in Celsius or Fahrenheit), the calibration
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.mopar/index.html b/components/sensor.mopar/index.html index cf9e6f5d5c..6654372682 100644 --- a/components/sensor.mopar/index.html +++ b/components/sensor.mopar/index.html @@ -243,6 +243,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -294,6 +297,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -405,6 +411,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -510,6 +519,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.mqtt/index.html b/components/sensor.mqtt/index.html index d5f6d79384..53f43ef682 100644 --- a/components/sensor.mqtt/index.html +++ b/components/sensor.mqtt/index.html @@ -395,6 +395,9 @@ home/bathroom/analog/brightness 290.00
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -446,6 +449,9 @@ home/bathroom/analog/brightness 290.00
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -557,6 +563,9 @@ home/bathroom/analog/brightness 290.00
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -662,6 +671,9 @@ home/bathroom/analog/brightness 290.00
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.mqtt_room/index.html b/components/sensor.mqtt_room/index.html index 7fa5a3e2bc..4143164e14 100644 --- a/components/sensor.mqtt_room/index.html +++ b/components/sensor.mqtt_room/index.html @@ -276,6 +276,9 @@ Instead of developing your own application, you can also use any of these alread
  • Volvo On Call
  • +
  • + Volvo On Call +
  • Xiaomi Router
  • diff --git a/components/sensor.mysensors/index.html b/components/sensor.mysensors/index.html index bf317f19e8..28119ec29f 100644 --- a/components/sensor.mysensors/index.html +++ b/components/sensor.mysensors/index.html @@ -495,6 +495,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -546,6 +549,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -657,6 +663,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -762,6 +771,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.nest/index.html b/components/sensor.nest/index.html index 3ce62ec1bc..c52355f44f 100644 --- a/components/sensor.nest/index.html +++ b/components/sensor.nest/index.html @@ -265,6 +265,9 @@ You must have the Nest component configured to u
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -316,6 +319,9 @@ You must have the Nest component configured to u
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -427,6 +433,9 @@ You must have the Nest component configured to u
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -532,6 +541,9 @@ You must have the Nest component configured to u
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.netdata/index.html b/components/sensor.netdata/index.html index 2eb58aa286..31235abf28 100644 --- a/components/sensor.netdata/index.html +++ b/components/sensor.netdata/index.html @@ -211,6 +211,9 @@
  • System Monitor
  • +
  • + UpCloud Binary Sensor +
  • Vultr Binary Sensor
  • diff --git a/components/sensor.neurio_energy/index.html b/components/sensor.neurio_energy/index.html index acf25ffcdb..342f65d44c 100644 --- a/components/sensor.neurio_energy/index.html +++ b/components/sensor.neurio_energy/index.html @@ -149,6 +149,9 @@
  • SMA Solar WebConnect
  • +
  • + Sense +
  • diff --git a/components/sensor.nut/index.html b/components/sensor.nut/index.html index 9bb5a5bb1e..56d6d30af4 100644 --- a/components/sensor.nut/index.html +++ b/components/sensor.nut/index.html @@ -242,6 +242,9 @@
  • System Monitor
  • +
  • + UpCloud Binary Sensor +
  • Vultr Binary Sensor
  • diff --git a/components/sensor.octoprint/index.html b/components/sensor.octoprint/index.html index 7e38f67d94..ab1b00681b 100644 --- a/components/sensor.octoprint/index.html +++ b/components/sensor.octoprint/index.html @@ -250,6 +250,9 @@ If you are tracking temperature it is recommended to set InfluxDB Sensor +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -412,6 +418,9 @@ If you are tracking temperature it is recommended to set Zehnder ComfoAir Q Ventilation sensors +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.ohmconnect/index.html b/components/sensor.ohmconnect/index.html index 3174175fcb..05471b5714 100644 --- a/components/sensor.ohmconnect/index.html +++ b/components/sensor.ohmconnect/index.html @@ -145,6 +145,9 @@
  • SMA Solar WebConnect
  • +
  • + Sense +
  • diff --git a/components/sensor.openevse/index.html b/components/sensor.openevse/index.html index b5d1f665fe..bf3b3da535 100644 --- a/components/sensor.openevse/index.html +++ b/components/sensor.openevse/index.html @@ -235,6 +235,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -286,6 +289,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -397,6 +403,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -502,6 +511,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.openhardwaremonitor/index.html b/components/sensor.openhardwaremonitor/index.html index fc0631a228..16927b23aa 100644 --- a/components/sensor.openhardwaremonitor/index.html +++ b/components/sensor.openhardwaremonitor/index.html @@ -196,6 +196,9 @@ You also need to open an inbound port for (TCP 8085) in the advanced firewall se
  • System Monitor
  • +
  • + UpCloud Binary Sensor +
  • Vultr Binary Sensor
  • diff --git a/components/sensor.opensky/index.html b/components/sensor.opensky/index.html index 0ce3976a71..a7c3365145 100644 --- a/components/sensor.opensky/index.html +++ b/components/sensor.opensky/index.html @@ -235,6 +235,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -286,6 +289,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -397,6 +403,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -502,6 +511,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.otp/index.html b/components/sensor.otp/index.html index 00b689c10b..696242b00f 100644 --- a/components/sensor.otp/index.html +++ b/components/sensor.otp/index.html @@ -239,6 +239,9 @@ It is vital that your system clock is correct both on your Home Assistant server
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -290,6 +293,9 @@ It is vital that your system clock is correct both on your Home Assistant server
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -401,6 +407,9 @@ It is vital that your system clock is correct both on your Home Assistant server
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -506,6 +515,9 @@ It is vital that your system clock is correct both on your Home Assistant server
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.pi_hole/index.html b/components/sensor.pi_hole/index.html index ac92891978..c4b849419b 100644 --- a/components/sensor.pi_hole/index.html +++ b/components/sensor.pi_hole/index.html @@ -197,6 +197,9 @@
  • System Monitor
  • +
  • + UpCloud Binary Sensor +
  • Vultr Binary Sensor
  • diff --git a/components/sensor.pilight/index.html b/components/sensor.pilight/index.html index f2af2ef6b4..b23f3e696b 100644 --- a/components/sensor.pilight/index.html +++ b/components/sensor.pilight/index.html @@ -265,6 +265,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -316,6 +319,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -427,6 +433,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -532,6 +541,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.plex/index.html b/components/sensor.plex/index.html index 288b80d2ed..995f579c2f 100644 --- a/components/sensor.plex/index.html +++ b/components/sensor.plex/index.html @@ -133,6 +133,9 @@
  • Bluesound
  • +
  • + Channels +
  • Clementine Music Player
  • @@ -253,6 +256,9 @@
  • Sony Bravia TV
  • +
  • + Sony SongPal compatible devices +
  • Soundtouch
  • diff --git a/components/sensor.pocketcasts/index.html b/components/sensor.pocketcasts/index.html index 1be255e75f..44829cd213 100644 --- a/components/sensor.pocketcasts/index.html +++ b/components/sensor.pocketcasts/index.html @@ -224,6 +224,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -275,6 +278,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -386,6 +392,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -491,6 +500,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.pushbullet/index.html b/components/sensor.pushbullet/index.html index 5f8b13cf51..7669980e5f 100644 --- a/components/sensor.pushbullet/index.html +++ b/components/sensor.pushbullet/index.html @@ -252,6 +252,9 @@ This sensor platform provides sensors that show the properties of the latest rec
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -303,6 +306,9 @@ This sensor platform provides sensors that show the properties of the latest rec
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -414,6 +420,9 @@ This sensor platform provides sensors that show the properties of the latest rec
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -519,6 +528,9 @@ This sensor platform provides sensors that show the properties of the latest rec
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.pvoutput/index.html b/components/sensor.pvoutput/index.html index ceb6752721..7e46dac272 100644 --- a/components/sensor.pvoutput/index.html +++ b/components/sensor.pvoutput/index.html @@ -173,6 +173,9 @@ It’s recommended to set scan_interval:
  • SMA Solar WebConnect
  • +
  • + Sense +
  • diff --git a/components/sensor.qnap/index.html b/components/sensor.qnap/index.html index 84b5dc70e3..3a00f6acda 100644 --- a/components/sensor.qnap/index.html +++ b/components/sensor.qnap/index.html @@ -271,6 +271,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -322,6 +325,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -433,6 +439,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -538,6 +547,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.radarr/index.html b/components/sensor.radarr/index.html index 64902b3d37..31fa352a5d 100644 --- a/components/sensor.radarr/index.html +++ b/components/sensor.radarr/index.html @@ -298,6 +298,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -349,6 +352,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -460,6 +466,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -565,6 +574,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.rainbird/index.html b/components/sensor.rainbird/index.html index ced175a5b2..c51651a4f8 100644 --- a/components/sensor.rainbird/index.html +++ b/components/sensor.rainbird/index.html @@ -178,6 +178,9 @@
  • Dyson
  • +
  • + Egardia +
  • Eight Sleep
  • @@ -361,6 +364,9 @@
  • USPS
  • +
  • + UpCloud +
  • Velbus
  • diff --git a/components/sensor.raincloud/index.html b/components/sensor.raincloud/index.html index 82f262e78b..657ae05420 100644 --- a/components/sensor.raincloud/index.html +++ b/components/sensor.raincloud/index.html @@ -242,6 +242,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -293,6 +296,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -404,6 +410,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -509,6 +518,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.random/index.html b/components/sensor.random/index.html index 0f54c79f0d..4a3a8b9335 100644 --- a/components/sensor.random/index.html +++ b/components/sensor.random/index.html @@ -250,6 +250,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -301,6 +304,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -412,6 +418,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -517,6 +526,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.rest/index.html b/components/sensor.rest/index.html index 7edb3afb7c..5ca03e7089 100644 --- a/components/sensor.rest/index.html +++ b/components/sensor.rest/index.html @@ -432,6 +432,9 @@ User-Agent: Home Assistant
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -483,6 +486,9 @@ User-Agent: Home Assistant
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -594,6 +600,9 @@ User-Agent: Home Assistant
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -699,6 +708,9 @@ User-Agent: Home Assistant
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.rflink/index.html b/components/sensor.rflink/index.html index 56b247437c..eb3b5ec381 100644 --- a/components/sensor.rflink/index.html +++ b/components/sensor.rflink/index.html @@ -298,6 +298,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -349,6 +352,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -460,6 +466,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -565,6 +574,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.rfxtrx/index.html b/components/sensor.rfxtrx/index.html index ea37d398cf..2b47fafd90 100644 --- a/components/sensor.rfxtrx/index.html +++ b/components/sensor.rfxtrx/index.html @@ -299,6 +299,9 @@ Then you should update your configuration to (_temperature is not needed):

  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -350,6 +353,9 @@ Then you should update your configuration to (_temperature is not needed):

  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -461,6 +467,9 @@ Then you should update your configuration to (_temperature is not needed):

  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -566,6 +575,9 @@ Then you should update your configuration to (_temperature is not needed):

  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.ring/index.html b/components/sensor.ring/index.html index 84ebd8a83f..87d4485674 100644 --- a/components/sensor.ring/index.html +++ b/components/sensor.ring/index.html @@ -246,6 +246,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -297,6 +300,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -408,6 +414,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -513,6 +522,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.scrape/index.html b/components/sensor.scrape/index.html index 43d3fb0dca..157ce87aad 100644 --- a/components/sensor.scrape/index.html +++ b/components/sensor.scrape/index.html @@ -298,6 +298,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -349,6 +352,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -460,6 +466,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -565,6 +574,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.season/index.html b/components/sensor.season/index.html index 6f066e8889..7de0eae8a0 100644 --- a/components/sensor.season/index.html +++ b/components/sensor.season/index.html @@ -227,6 +227,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -278,6 +281,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -389,6 +395,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -494,6 +503,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.sense/index.html b/components/sensor.sense/index.html new file mode 100644 index 0000000000..b992358608 --- /dev/null +++ b/components/sensor.sense/index.html @@ -0,0 +1,271 @@ + + + + + + + + + Sense - Home Assistant + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    +

    + Sense +

    +
    +
    +

    Integrate your Sense meter information into Home Assistant. +To enable this sensor in your installation, add the following to your configuration.yaml file:

    +
    # Example configuration.yaml entry
    +sensor:
    +  platform: sense
    +  email: CLIENT_ID
    +  password: CLIENT_SECRET
    +  monitored_conditions:
    +    - active_usage
    +    - active_production
    +    - daily_usage
    +    - daily_production
    +
    +
    +

    Two types of sensors can be monitored and will be created with the following names:

    +
      +
    • Active Usage/Production: Current active power usage/production in Watts. Updated every 30 seconds.
    • +
    • Daily Usage/Production: Daily power usage/production in kWh. Updated every 5 minutes.
    • +
    • +
    +

    Weekly, Monthly and Yearly variants are also available.

    +
    +

    Configuration Variables

    +
    +
    email
    +
    +

    (string)(Required)The email associated with your Sense account/application.

    +
    +
    password
    +
    +

    (string)(Required)The password for your Sense account/application.

    +
    +
    monitored_conditions
    +
    +

    (list)(Required)List of sensors to display in the front end.

    +
    +
    +
    +
    active_usage
    +
    +

    The current power usage in W

    +
    +
    active_production
    +
    +

    The current solar production in W

    +
    +
    daily_usage
    +
    +

    Total power used for current day in kWh

    +
    +
    daily_production
    +
    +

    Total power produced for current day in kWh

    +
    +
    weekly_usage
    +
    +

    Total power used for current week in kWh

    +
    +
    weekly_production
    +
    +

    Total power produced for current week in kWh

    +
    +
    monthly_usage
    +
    +

    Total power used for current month in kWh

    +
    +
    monthly_production
    +
    +

    Total power produced for current month in kWh

    +
    +
    yearly_usage
    +
    +

    Total power used for current year in kWh

    +
    +
    yearly_production
    +
    +

    Total power produced for current year in kWh

    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + diff --git a/components/sensor.sensehat/index.html b/components/sensor.sensehat/index.html index 6ffca22907..5dff6193dc 100644 --- a/components/sensor.sensehat/index.html +++ b/components/sensor.sensehat/index.html @@ -341,6 +341,9 @@ These issues have been discussed in the repository issue (#5093)[https://github.
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -392,6 +395,9 @@ These issues have been discussed in the repository issue (#5093)[https://github.
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -503,6 +509,9 @@ These issues have been discussed in the repository issue (#5093)[https://github.
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -608,6 +617,9 @@ These issues have been discussed in the repository issue (#5093)[https://github.
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.serial/index.html b/components/sensor.serial/index.html index ce3a3bf704..360c0799e0 100644 --- a/components/sensor.serial/index.html +++ b/components/sensor.serial/index.html @@ -276,6 +276,9 @@ JsonObject& prepareResponse(JsonBuffer& jsonBuffer) {
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -327,6 +330,9 @@ JsonObject& prepareResponse(JsonBuffer& jsonBuffer) {
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -438,6 +444,9 @@ JsonObject& prepareResponse(JsonBuffer& jsonBuffer) {
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -543,6 +552,9 @@ JsonObject& prepareResponse(JsonBuffer& jsonBuffer) {
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.shodan/index.html b/components/sensor.shodan/index.html index 53a9e6fac4..037992bff2 100644 --- a/components/sensor.shodan/index.html +++ b/components/sensor.shodan/index.html @@ -240,6 +240,9 @@ file:

  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -291,6 +294,9 @@ file:

  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -402,6 +408,9 @@ file:

  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -507,6 +516,9 @@ file:

  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.simulated/index.html b/components/sensor.simulated/index.html new file mode 100644 index 0000000000..47728e2fe9 --- /dev/null +++ b/components/sensor.simulated/index.html @@ -0,0 +1,640 @@ + + + + + + + + + Simulated sensor - Home Assistant + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    +

    + Simulated sensor +

    +
    +
    +

    This component provides a simulated sensor that generates a time-varying signal V(t) given by the function:

    +
     V(t) = M + A sin((2 pi (t - t_0) / w) + P) + N(s)
    +
    +
    +

    where:

    +
      +
    • M = the mean value of the sensor
    • +
    • A = the amplitude of the periodic contribution
    • +
    • t = the time when a value is generated
    • +
    • t_0 = the time when the sensor is started
    • +
    • w = the time period in seconds for a single complete cycle of the periodic contribution
    • +
    • P = the phase offset to add to the periodic contribution, in units of degrees
    • +
    • N(s) = the random Gaussian noise with spread s
    • +
    +

    A simulated sensor with default values can be added to home-assistant using the following config:

    +
    sensor:
    +  - platform: simulated
    +
    +
    +

    To give an example of simulating real world data, a simulated relative humidity sensor (in %) can be added using the following config:

    +
    sensor:
    +  - platform: simulated
    +    name: 'simulated relative humidity'
    +    unit: '%'
    +    amplitude: 0 # Turns off the periodic contribution
    +    mean: 50
    +    spread: 10
    +    seed: 999
    +
    +
    +

    Configuration variables:

    +
    +

    Configuration Variables

    +
    +
    name
    +
    +

    (string)(Optional)The name of the sensor

    +

    Default value: Defaults to ‘simulated’

    +
    +
    unit
    +
    +

    (string)(Optional)The unit to apply

    +

    Default value: Defaults to ‘value’

    +
    +
    amplitude
    +
    +

    (float)(Optional)The amplitude of periodic contribution

    +

    Default value: 1

    +
    +
    mean
    +
    +

    (float)(Optional)The mean level of the sensor

    +

    Default value: 0

    +
    +
    period
    +
    +

    (seconds)(Optional)The time in seconds for one complete oscillation of the periodic contribution

    +

    Default value: 0

    +
    +
    phase
    +
    +

    (float)(Optional)The phase offset (in degrees) to apply to the periodic component

    +

    Default value: 0

    +
    +
    seed
    +
    +

    (int)(Optional)The seed value for the random noise component

    +

    Default value: 999

    +
    +
    spread
    +
    +

    (float)(Optional)The spread is the range of the randomly distributed values about their mean. This is sometimes referred to as the Full Width at Half Maximum (FWHM) of the random distribution

    +

    Default value: None

    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + diff --git a/components/sensor.skybell/index.html b/components/sensor.skybell/index.html index 69115f978d..27df288253 100644 --- a/components/sensor.skybell/index.html +++ b/components/sensor.skybell/index.html @@ -247,6 +247,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -298,6 +301,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -409,6 +415,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -514,6 +523,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.sleepiq/index.html b/components/sensor.sleepiq/index.html index 4fece4f231..610657aed8 100644 --- a/components/sensor.sleepiq/index.html +++ b/components/sensor.sleepiq/index.html @@ -222,6 +222,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -273,6 +276,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -384,6 +390,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -489,6 +498,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.sma/index.html b/components/sensor.sma/index.html index 223db2eded..3421812407 100644 --- a/components/sensor.sma/index.html +++ b/components/sensor.sma/index.html @@ -173,6 +173,9 @@
  • SMA Solar WebConnect
  • +
  • + Sense +
  • diff --git a/components/sensor.smappee/index.html b/components/sensor.smappee/index.html index fa06154845..0d5a69a2b4 100644 --- a/components/sensor.smappee/index.html +++ b/components/sensor.smappee/index.html @@ -87,7 +87,7 @@
    - Introduced in release: 0.62 + Introduced in release: 0.64
    Source: @@ -221,6 +221,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -272,6 +275,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -383,6 +389,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -488,6 +497,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.snmp/index.html b/components/sensor.snmp/index.html index a1a3e54e3c..8c42585fd4 100644 --- a/components/sensor.snmp/index.html +++ b/components/sensor.snmp/index.html @@ -233,6 +233,9 @@ laLoad.1 = STRING: 0.19
  • System Monitor
  • +
  • + UpCloud Binary Sensor +
  • Vultr Binary Sensor
  • diff --git a/components/sensor.sonarr/index.html b/components/sensor.sonarr/index.html index 11fe5dac13..6d8804ebb1 100644 --- a/components/sensor.sonarr/index.html +++ b/components/sensor.sonarr/index.html @@ -302,6 +302,9 @@
  • File size sensor
  • +
  • + Filter Sensor +
  • Folder sensor
  • @@ -353,6 +356,9 @@
  • InfluxDB Sensor
  • +
  • + Insteon PLM Sensor +
  • Juicenet Sensor
  • @@ -464,6 +470,9 @@
  • Shodan Sensor
  • +
  • + Simulated sensor +
  • Skybell Sensor
  • @@ -569,6 +578,9 @@
  • Zehnder ComfoAir Q Ventilation sensors
  • +
  • + Zestimate +
  • ZigBee Home Automation Sensor
  • diff --git a/components/sensor.speedtest/index.html b/components/sensor.speedtest/index.html index ea5a4fcdb3..9338014d29 100644 --- a/components/sensor.speedtest/index.html +++ b/components/sensor.speedtest/index.html @@ -258,6 +258,9 @@
  • System Monitor
  • +
  • + UpCloud Binary Sensor +
  • Vultr Binary Sensor
  • diff --git a/components/sensor.spotcrime/index.html b/components/sensor.spotcrime/index.html index 25bc8f5155..77b77e2f9c 100644 --- a/components/sensor.spotcrime/index.html +++ b/components/sensor.spotcrime/index.html @@ -87,7 +87,7 @@

    Configuration options for the Crime Reports Sensor:

    @@ -295,6 +301,9 @@ component.

  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.isy994/index.html b/components/switch.isy994/index.html index 9ab0c05874..bb71aafd5d 100644 --- a/components/switch.isy994/index.html +++ b/components/switch.isy994/index.html @@ -305,6 +305,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.kankun/index.html b/components/switch.kankun/index.html index cc5171b558..ab617ff5be 100644 --- a/components/switch.kankun/index.html +++ b/components/switch.kankun/index.html @@ -310,6 +310,9 @@ of the script as linked above).

  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.knx/index.html b/components/switch.knx/index.html index fe5ad7bb52..b7efcdb687 100644 --- a/components/switch.knx/index.html +++ b/components/switch.knx/index.html @@ -325,6 +325,9 @@ For switching actuators that are only controlled by a single group address and c
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.litejet/index.html b/components/switch.litejet/index.html index 5bb85b24a4..59603c69e2 100644 --- a/components/switch.litejet/index.html +++ b/components/switch.litejet/index.html @@ -294,6 +294,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.lutron_caseta/index.html b/components/switch.lutron_caseta/index.html index 2cc8acb52f..97a3e7b5c6 100644 --- a/components/switch.lutron_caseta/index.html +++ b/components/switch.lutron_caseta/index.html @@ -299,6 +299,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.mfi/index.html b/components/switch.mfi/index.html index 90733d1cca..bad6a898d3 100644 --- a/components/switch.mfi/index.html +++ b/components/switch.mfi/index.html @@ -304,6 +304,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.mochad/index.html b/components/switch.mochad/index.html index 44317ee5e5..d14c696e06 100644 --- a/components/switch.mochad/index.html +++ b/components/switch.mochad/index.html @@ -306,6 +306,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.modbus/index.html b/components/switch.modbus/index.html index a301c0b450..18e7e3b102 100644 --- a/components/switch.modbus/index.html +++ b/components/switch.modbus/index.html @@ -339,6 +339,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.mqtt/index.html b/components/switch.mqtt/index.html index 297353c3b9..d3b68bb6e4 100644 --- a/components/switch.mqtt/index.html +++ b/components/switch.mqtt/index.html @@ -438,6 +438,9 @@ Make sure that your topic matches exactly. some-
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.mysensors/index.html b/components/switch.mysensors/index.html index ba4b795283..7192164dc7 100644 --- a/components/switch.mysensors/index.html +++ b/components/switch.mysensors/index.html @@ -554,6 +554,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.mystrom/index.html b/components/switch.mystrom/index.html index 355bad9369..f58a34a34b 100644 --- a/components/switch.mystrom/index.html +++ b/components/switch.mystrom/index.html @@ -337,6 +337,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.neato/index.html b/components/switch.neato/index.html index fbc8e3fca2..e8d160e8fa 100644 --- a/components/switch.neato/index.html +++ b/components/switch.neato/index.html @@ -293,6 +293,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.netio/index.html b/components/switch.netio/index.html index 7c23bf4833..a0d07daba5 100644 --- a/components/switch.netio/index.html +++ b/components/switch.netio/index.html @@ -328,6 +328,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.orvibo/index.html b/components/switch.orvibo/index.html index 4712ef64b8..06d2da435b 100644 --- a/components/switch.orvibo/index.html +++ b/components/switch.orvibo/index.html @@ -303,6 +303,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.pilight/index.html b/components/switch.pilight/index.html index e8cc82ba86..cefc979c8a 100644 --- a/components/switch.pilight/index.html +++ b/components/switch.pilight/index.html @@ -372,6 +372,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.pulseaudio_loopback/index.html b/components/switch.pulseaudio_loopback/index.html index e52c88e82b..1c90134694 100644 --- a/components/switch.pulseaudio_loopback/index.html +++ b/components/switch.pulseaudio_loopback/index.html @@ -303,6 +303,9 @@ This component relies on raw TCP commands to PulseAudio. In order for PulseAudio
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.qwikswitch/index.html b/components/switch.qwikswitch/index.html index 2f0474eb41..0e5a2949bb 100644 --- a/components/switch.qwikswitch/index.html +++ b/components/switch.qwikswitch/index.html @@ -294,6 +294,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.rachio/index.html b/components/switch.rachio/index.html index c750a29089..80e9eec20f 100644 --- a/components/switch.rachio/index.html +++ b/components/switch.rachio/index.html @@ -340,6 +340,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.rainbird/index.html b/components/switch.rainbird/index.html index 3d9b32b03b..d7bf16e9a6 100644 --- a/components/switch.rainbird/index.html +++ b/components/switch.rainbird/index.html @@ -191,6 +191,9 @@
  • Dyson
  • +
  • + Egardia +
  • Eight Sleep
  • @@ -374,6 +377,9 @@
  • USPS
  • +
  • + UpCloud +
  • Velbus
  • diff --git a/components/switch.raincloud/index.html b/components/switch.raincloud/index.html index 085cbe333b..95ff6dd1d8 100644 --- a/components/switch.raincloud/index.html +++ b/components/switch.raincloud/index.html @@ -311,6 +311,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.rainmachine/index.html b/components/switch.rainmachine/index.html index 5a548e2d4c..52465df51a 100644 --- a/components/switch.rainmachine/index.html +++ b/components/switch.rainmachine/index.html @@ -340,6 +340,9 @@ can fix the issue.

  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.raspihats/index.html b/components/switch.raspihats/index.html index 71922fca51..85cb61f624 100644 --- a/components/switch.raspihats/index.html +++ b/components/switch.raspihats/index.html @@ -361,6 +361,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.rest/index.html b/components/switch.rest/index.html index 7267f49437..26fc7adc19 100644 --- a/components/switch.rest/index.html +++ b/components/switch.rest/index.html @@ -367,6 +367,9 @@ Make sure that the URL matches exactly your endpoint or resource.
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.rflink/index.html b/components/switch.rflink/index.html index 464ae91324..1770bef1fa 100644 --- a/components/switch.rflink/index.html +++ b/components/switch.rflink/index.html @@ -352,6 +352,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.rfxtrx/index.html b/components/switch.rfxtrx/index.html index 92e1629fa3..df879f5e65 100644 --- a/components/switch.rfxtrx/index.html +++ b/components/switch.rfxtrx/index.html @@ -425,6 +425,9 @@ This component and the rfxtrx binary
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.rpi_gpio/index.html b/components/switch.rpi_gpio/index.html index afada9f3fd..257511e0ab 100644 --- a/components/switch.rpi_gpio/index.html +++ b/components/switch.rpi_gpio/index.html @@ -326,6 +326,9 @@ For example, if you have a relay connected to pin 11 its GPIO # is 17.

  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.rpi_pfio/index.html b/components/switch.rpi_pfio/index.html index 0db9baeb3f..78dc01282f 100644 --- a/components/switch.rpi_pfio/index.html +++ b/components/switch.rpi_pfio/index.html @@ -317,6 +317,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.rpi_rf/index.html b/components/switch.rpi_rf/index.html index 77665a7f99..3f898291c5 100644 --- a/components/switch.rpi_rf/index.html +++ b/components/switch.rpi_rf/index.html @@ -320,6 +320,9 @@ For more info see the PyPi module description: : Local Push
    - Introduced in release: 0.62 + Introduced in release: 0.64
    Source: @@ -294,6 +294,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.snmp/index.html b/components/switch.snmp/index.html index 7a9ea92d7c..c7a8c8f7ee 100644 --- a/components/switch.snmp/index.html +++ b/components/switch.snmp/index.html @@ -326,6 +326,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.tellduslive/index.html b/components/switch.tellduslive/index.html index a4b082b158..c361669918 100644 --- a/components/switch.tellduslive/index.html +++ b/components/switch.tellduslive/index.html @@ -289,6 +289,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.tellstick/index.html b/components/switch.tellstick/index.html index 5519d9fd74..6018309899 100644 --- a/components/switch.tellstick/index.html +++ b/components/switch.tellstick/index.html @@ -301,6 +301,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.telnet/index.html b/components/switch.telnet/index.html index aeb840fd61..738fe69999 100644 --- a/components/switch.telnet/index.html +++ b/components/switch.telnet/index.html @@ -312,6 +312,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.template/index.html b/components/switch.template/index.html index 847453fe6e..360da19998 100644 --- a/components/switch.template/index.html +++ b/components/switch.template/index.html @@ -472,6 +472,9 @@ momentary switches to control a device.

  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.tesla/index.html b/components/switch.tesla/index.html index 8def18daff..d3726f6fb9 100644 --- a/components/switch.tesla/index.html +++ b/components/switch.tesla/index.html @@ -306,6 +306,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.thinkingcleaner/index.html b/components/switch.thinkingcleaner/index.html index d8ba78eccb..0241242513 100644 --- a/components/switch.thinkingcleaner/index.html +++ b/components/switch.thinkingcleaner/index.html @@ -296,6 +296,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.toon/index.html b/components/switch.toon/index.html index 5b35466c3f..d91f602449 100644 --- a/components/switch.toon/index.html +++ b/components/switch.toon/index.html @@ -296,6 +296,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.tplink/index.html b/components/switch.tplink/index.html index 27a9faf2f5..4af3f3130d 100644 --- a/components/switch.tplink/index.html +++ b/components/switch.tplink/index.html @@ -324,6 +324,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.upcloud/index.html b/components/switch.upcloud/index.html new file mode 100644 index 0000000000..dde06672b0 --- /dev/null +++ b/components/switch.upcloud/index.html @@ -0,0 +1,418 @@ + + + + + + + + + UpCloud Switch - Home Assistant + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    +

    + UpCloud Switch +

    +
    +
    +

    The upcloud switch platform allows you to control (start/stop) your UpCloud servers.

    +

    To use your UpCloud servers, you first have to set up your UpCloud hub and then add the following to your configuration.yaml file:

    +
    # Example configuration.yaml entry
    +switch:
    +  - platform: upcloud
    +    servers:
    +      - 002167b7-4cb1-44b7-869f-e0900ddeeae1
    +      - 00886296-6137-4074-afe3-068e16d89d00
    +
    +
    +
    +

    Configuration Variables

    +
    +
    servers
    +
    +

    (list)(Required)List of servers you want to control.

    +
    +
    +
    +
    +
    + +
    +
    + + + + + + + diff --git a/components/switch.velbus/index.html b/components/switch.velbus/index.html index 72ee0ae68f..5492e12b5a 100644 --- a/components/switch.velbus/index.html +++ b/components/switch.velbus/index.html @@ -327,6 +327,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.vera/index.html b/components/switch.vera/index.html index 9b2bfe7e24..7a92a2155c 100644 --- a/components/switch.vera/index.html +++ b/components/switch.vera/index.html @@ -312,6 +312,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.verisure/index.html b/components/switch.verisure/index.html index b61d23c33b..5e08d7fc7f 100644 --- a/components/switch.verisure/index.html +++ b/components/switch.verisure/index.html @@ -302,6 +302,9 @@
  • Toon Smart Plugs
  • +
  • + UpCloud Switch +
  • Velbus Switches
  • diff --git a/components/switch.volvooncall/index.html b/components/switch.volvooncall/index.html new file mode 100644 index 0000000000..f83254a9c9 --- /dev/null +++ b/components/switch.volvooncall/index.html @@ -0,0 +1,319 @@ + + + + + + + + + Volvo On Call - Home Assistant + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    +

    + Volvo On Call +

    +
    +
    +

    Integrates Volvo on Call into Home Assistant. See the main component for configuration instructions.

    +
    +
    + +
    +
    + + + + + + + diff --git a/components/switch.vultr/index.html b/components/switch.vultr/index.html index d726193088..9bd18b86fe 100644 --- a/components/switch.vultr/index.html +++ b/components/switch.vultr/index.html @@ -327,6 +327,9 @@ The following examples assume a subscription that has an ID of name: Original Xiaomi Mi Smart WiFi Socket host: 192.168.130.59 token: YOUR_TOKEN + model: chuangmi.plug.m1

    Configuration variables:

      -
    • host (Required): The IP of your plug.
    • -
    • token (Required): The API token of your plug.
    • -
    • name (Optional): The name of your plug.
    • +
    • host (Required): The IP of your miio device.
    • +
    • token (Required): The API token of your miio device.
    • +
    • name (Optional): The name of your miio device.
    • +
    • model (Optional): The model of your miio device. Valid values are chuangmi.plug.v1, qmi.powerstrip.v1, zimi.powerstrip.v2, chuangmi.plug.m1 and chuangmi.plug.v2`. This setting can be used to bypass the device model detection and is recommended if your device isn’t always available.
    +
    +

    Configuration Variables

    +
    +
    host
    +
    +

    (string)(Required)The IP address of your device.

    +
    +
    token
    +
    +

    (string)(Required)The API token of your device.

    +
    +
    name
    +
    +

    (string)(Optional)The name of your device.

    +

    Default value: Xiaomi Miio Switch

    +
    +
    model
    +
    +

    (string)(Optional)The model of your device.

    +
    +
    +