From 650c6142bb34e930e0e588b49d29889bec9f6c1f Mon Sep 17 00:00:00 2001 From: RichardUUU <14031396+RichardUUU@users.noreply.github.com> Date: Sat, 7 Dec 2019 04:25:49 -0500 Subject: [PATCH 01/12] Richard uuu patch 1 (#11375) * Update input_select.markdown * Update input_select.markdown --- source/_integrations/input_select.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_integrations/input_select.markdown b/source/_integrations/input_select.markdown index dadf14dd546..beb18f39846 100644 --- a/source/_integrations/input_select.markdown +++ b/source/_integrations/input_select.markdown @@ -62,7 +62,7 @@ Because YAML defines [booleans](https://yaml.org/type/bool.html) as equivalent, ### Restore State -This integration will automatically restore the state it had prior to Home Assistant stopping as long as your entity does **not** have a set value for `initial`. To disable this feature, set a valid value for `initial`. +If you set a valid value for 'initial' this integration will start with state set to that value. Otherwise, it will restore the state it had prior to Home Assistant stopping. ### Services From c2a775aeddf4a3cae2a2c110a93ce56503456dbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Beye?= Date: Sat, 7 Dec 2019 10:30:49 +0100 Subject: [PATCH 02/12] Removed obsolete paragraph from mqtt climate (#11381) --- source/_integrations/climate.mqtt.markdown | 4 ---- 1 file changed, 4 deletions(-) diff --git a/source/_integrations/climate.mqtt.markdown b/source/_integrations/climate.mqtt.markdown index 4242674bfc2..7916ae80c62 100644 --- a/source/_integrations/climate.mqtt.markdown +++ b/source/_integrations/climate.mqtt.markdown @@ -10,10 +10,6 @@ ha_iot_class: Local Polling The `mqtt` climate platform lets you control your MQTT enabled HVAC devices. -The platform currently works in optimistic mode, which means it does not obtain states from MQTT topics, but it sends and remembers control commands. - -It uses a sensor under the hood to obtain the current temperature. - ## Configuration To enable this climate platform in your installation, first add the following to your `configuration.yaml` file: From 86b1902aaae618c4abd1842628e83912eb018b19 Mon Sep 17 00:00:00 2001 From: Greg Martin Date: Sat, 7 Dec 2019 21:18:43 -0800 Subject: [PATCH 03/12] Update backup_dropbox.markdown (#11388) Basic grammar fix. --- source/_docs/ecosystem/backup/backup_dropbox.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_docs/ecosystem/backup/backup_dropbox.markdown b/source/_docs/ecosystem/backup/backup_dropbox.markdown index 9586b3fea0c..fba59d4de13 100644 --- a/source/_docs/ecosystem/backup/backup_dropbox.markdown +++ b/source/_docs/ecosystem/backup/backup_dropbox.markdown @@ -4,7 +4,7 @@ description: "Instructions on how backup your Home Assistant configuration to Dr redirect_from: /cookbook/dropboxbackup/ --- -Backing up and regularly syncing your Home Assistant configuration to [Dropbox](http://dropbox.com) similar to [Github Backup](/docs/ecosystem/backup/backup_github/) +Backing up and regularly syncing your Home Assistant configuration to [Dropbox](http://dropbox.com) is similar to [Github Backup](/docs/ecosystem/backup/backup_github/) ### Requirements From fb4be8edfcf8b1cace340502ccfc059be08cc3e9 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Sun, 8 Dec 2019 13:51:10 +0000 Subject: [PATCH 04/12] Add note about Snips Console not being available any longer (#11397) * Updated snips.markdown Due to acquisition by Sonos Snips Console will no longer be available * :pencil2: Tweak Co-authored-by: Franck Nijhof --- source/_integrations/snips.markdown | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/_integrations/snips.markdown b/source/_integrations/snips.markdown index 86f8cce136c..a0f1c2da504 100644 --- a/source/_integrations/snips.markdown +++ b/source/_integrations/snips.markdown @@ -7,6 +7,12 @@ ha_category: ha_release: 0.48 --- +
+ +The Snips Console no longer available due to acquisition by Sonos. For more details, read the [announcement on the Snips forum](https://forum.snips.ai/t/important-message-regarding-the-snips-console/4145). + +
+ The [Snips Voice Platform](https://www.snips.ai) allows users to add powerful voice assistants to their Raspberry Pi devices without compromising on privacy. It runs 100% on-device, and does not require an internet connection. It features Hotword Detection, Automatic Speech Recognition (ASR), Natural Language Understanding (NLU) and Dialog Management. The latest documentation can be found here: [Snips Platform Documentation](https://docs.snips.ai/). From d3504d904764a223beb25b10e23164e0eb8e1568 Mon Sep 17 00:00:00 2001 From: HFeenstra Date: Sun, 8 Dec 2019 15:37:19 +0100 Subject: [PATCH 05/12] Update vacuum.xiaomi_miio.markdown (#11399) In the IOS chapter, I missed some info, after googling I find some extra info and therefor request to change the steps 12 and 14 of the IOS chapter. --- source/_integrations/vacuum.xiaomi_miio.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_integrations/vacuum.xiaomi_miio.markdown b/source/_integrations/vacuum.xiaomi_miio.markdown index ed8dfc84711..c573b03801d 100644 --- a/source/_integrations/vacuum.xiaomi_miio.markdown +++ b/source/_integrations/vacuum.xiaomi_miio.markdown @@ -344,12 +344,12 @@ To fetch the token follow these instructions depending on your mobile phone plat ```sql SELECT ZTOKEN FROM ZDEVICE WHERE ZMODEL LIKE "%vacuum%" ``` -12. Copy the returned 32-digit hexadecimal string to your clipboard. +12. Copy the returned 96-digit hexadecimal string to your clipboard. 13. Open `Terminal` and execute this command: ```bash echo '0: ' | xxd -r -p | openssl enc -d -aes-128-ecb -nopad -nosalt -K 00000000000000000000000000000000 ``` -14. Use the resulting string as your token. +14. Use the resulting 32-digit string as your token. (On your mac in front of the terminal session) ### Bluestacks From ac1867b29a8bc801fda38ac77e419f1e7a372ede Mon Sep 17 00:00:00 2001 From: RichardUUU <14031396+RichardUUU@users.noreply.github.com> Date: Sun, 8 Dec 2019 10:59:58 -0500 Subject: [PATCH 06/12] Simplification. (#11387) --- source/_integrations/input_text.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_integrations/input_text.markdown b/source/_integrations/input_text.markdown index 1cda4f554e5..e413fbc1863 100644 --- a/source/_integrations/input_text.markdown +++ b/source/_integrations/input_text.markdown @@ -79,7 +79,7 @@ This integration provides a single service to modify the state of the `input_tex ### Restore State -This integration will automatically restore the state it had prior to Home Assistant stopping as long as your entity does **not** have a set value for `initial`. To disable this feature, set a valid value for `initial`. +If you set a valid value for `initial` this integration will start with state set to that value. Otherwise, it will restore the state it had prior to Home Assistant stopping. ### Scenes From ed65a636b3fe23634781f8cf61ed0336ee87bfb3 Mon Sep 17 00:00:00 2001 From: Manuel Pietschmann Date: Sun, 8 Dec 2019 17:03:23 +0100 Subject: [PATCH 07/12] Fix broken links to dresden-elektronik.de + minor edits (#11390) * Fix broken links to dresden-elektronik.de + minor edits * Use UTF-8 arrows instead HTML encoded ones. --- source/_integrations/deconz.markdown | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/source/_integrations/deconz.markdown b/source/_integrations/deconz.markdown index 2fb4a435c8d..fc5f1876ce4 100644 --- a/source/_integrations/deconz.markdown +++ b/source/_integrations/deconz.markdown @@ -1,6 +1,6 @@ --- title: "deCONZ" -description: "Instructions on how to setup Conbee/Raspbee devices with deCONZ from Dresden Elektronik within Home Assistant." +description: "Instructions on how to setup ConBee/RaspBee devices with deCONZ from dresden elektronik within Home Assistant." logo: deconz.jpeg ha_category: - Hub @@ -16,7 +16,7 @@ ha_qa_scale: platinum ha_config_flow: true --- -[deCONZ](https://www.dresden-elektronik.de/funktechnik/products/software/pc/deconz/) by [Dresden Elektronik](https://www.dresden-elektronik.de) is a software that communicates with Conbee/Raspbee Zigbee gateways and exposes Zigbee devices that are connected to the gateway. +[deCONZ](https://www.dresden-elektronik.de/funk/software/deconz.html) by [dresden elektronik](https://www.dresden-elektronik.de) is a software that communicates with ConBee/RaspBee Zigbee gateways and exposes Zigbee devices that are connected to the gateway. [deCONZ REST API](https://dresden-elektronik.github.io/deconz-rest-doc/). @@ -32,7 +32,7 @@ There is currently support for the following device types within Home Assistant: ## Recommended way of running deCONZ -If you are running Hass.io, an official add-on for Deconz is available in the add-on store. +If you are running Hass.io, an official add-on for deCONZ is available in the add-on store. Otherwise, use [community container](https://hub.docker.com/r/marthoc/deconz/) by Marthoc for your deCONZ needs. ### Supported devices @@ -43,7 +43,7 @@ See [deCONZ wiki](https://github.com/dresden-elektronik/deconz-rest-plugin/wiki/ Home Assistant will automatically discover deCONZ presence on your network, if `discovery:` is present in your `configuration.yaml` file. -If you don't have the API key, you can generate an API key for deCONZ by using the one-click functionality similar to Philips Hue. Go to **Settings** -> **Gateway** -> **Advanced** -> **Authenticate app** in deCONZ and then use the deCONZ configurator in Home Assistant frontend to create an API key. When you're done setting up deCONZ it will be stored as a config entry. +If you don't have the API key, you can generate an API key for deCONZ by using the one-click functionality similar to Philips Hue. Go to **Settings** → **Gateway** → **Advanced** → **Authenticate app** in the Phoscon App and then use the deCONZ configurator in Home Assistant frontend to create an API key. When you're done setting up deCONZ it will be stored as a config entry. You can manually add deCONZ by going to the integrations page. @@ -61,7 +61,7 @@ logger: ## Troubleshooting -If you are having issues and want to report a problem, always start with making sure that you're on the latest [deCONZ software version](https://github.com/dresden-elektronik/deconz-rest-plugin/releases) and [latest firmware for hardware](https://www.dresden-elektronik.de/rpi/deconz-firmware/?C=M;O=D). +If you are having issues and want to report a problem, always start with making sure that you're on the latest [deCONZ software version](https://github.com/dresden-elektronik/deconz-rest-plugin/releases) and [latest firmware for hardware](http://deconz.dresden-elektronik.de/deconz-firmware/?C=M;O=D). ## Device services @@ -69,7 +69,7 @@ Available services: `configure` and `deconz.device_refresh`. ### Service `deconz.configure` -Set attribute of device in deCONZ using [Rest API](https://dresden-elektronik.github.io/deconz-rest-doc/rest/). +Set attribute of device in deCONZ using [REST-API](https://dresden-elektronik.github.io/deconz-rest-doc/rest/). | Service data attribute | Optional | Description | |-----------|----------|-------------| @@ -372,7 +372,7 @@ The `entity_id` name will be `climate.device_name`, where `device_name` is defin Covers are devices like ventilation dampers or smart window covers. -Note that devices in the cover platform identify as lights, so there is a manually curated list that defines which "lights" are covers. You therefore add a cover device as a light device in deCONZ (phoscon app). +Note that devices in the cover platform identify as lights, so there is a manually curated list that defines which "lights" are covers. You therefore add a cover device as a light device in deCONZ (Phoscon App). The `entity_id` name will be `cover.device_name`, where `device_name` is defined in deCONZ. From 73b539463a313e7105f347486a3f936c5f5bce1e Mon Sep 17 00:00:00 2001 From: RichardUUU <14031396+RichardUUU@users.noreply.github.com> Date: Sun, 8 Dec 2019 11:23:46 -0500 Subject: [PATCH 08/12] Simplification. (#11386) --- source/_integrations/input_number.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_integrations/input_number.markdown b/source/_integrations/input_number.markdown index 3e46a5bdcfb..4456e59f1ef 100644 --- a/source/_integrations/input_number.markdown +++ b/source/_integrations/input_number.markdown @@ -75,7 +75,7 @@ input_number: ### Restore State -This integration will automatically restore the state it had prior to Home Assistant stopping as long as your entity does **not** have a set value for `initial`. To disable this feature, set a valid value for `initial`. +If you set a valid value for `initial` this integration will start with state set to that value. Otherwise, it will restore the state it had prior to Home Assistant stopping. ### Scenes From f72c1931db42a2df952eb99a3cabfcaeff2d0c40 Mon Sep 17 00:00:00 2001 From: RichardUUU <14031396+RichardUUU@users.noreply.github.com> Date: Sun, 8 Dec 2019 11:31:59 -0500 Subject: [PATCH 09/12] Simplification. (#11385) --- source/_integrations/input_datetime.markdown | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source/_integrations/input_datetime.markdown b/source/_integrations/input_datetime.markdown index 4486c0c8392..a0da854525d 100644 --- a/source/_integrations/input_datetime.markdown +++ b/source/_integrations/input_datetime.markdown @@ -78,9 +78,7 @@ automations and templates. ### Restore State -This integration will automatically restore the state it had prior to Home -Assistant stopping as long as your entity does **not** have a set value for -`initial`. To disable this feature, set a valid value for `initial`. +If you set a valid value for `initial` this integration will start with state set to that value. Otherwise, it will restore the state it had prior to Home Assistant stopping. ### Services From 79e4e04c3536166e69bacb38d201c4e62c1d6fe4 Mon Sep 17 00:00:00 2001 From: RichardUUU <14031396+RichardUUU@users.noreply.github.com> Date: Sun, 8 Dec 2019 11:34:49 -0500 Subject: [PATCH 10/12] Update input_boolean.markdown (#11384) --- source/_integrations/input_boolean.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_integrations/input_boolean.markdown b/source/_integrations/input_boolean.markdown index fb559e5df5d..c2987ede1f4 100644 --- a/source/_integrations/input_boolean.markdown +++ b/source/_integrations/input_boolean.markdown @@ -44,7 +44,7 @@ input_boolean: ### Restore State -This integration will automatically restore the state it had prior to Home Assistant stopping as long as your entity does **not** have a set value for `initial`. To disable this feature, set a valid value for `initial`. +If you set a valid value for `initial` this integration will start with state set to that value. Otherwise, it will restore the state it had prior to Home Assistant stopping. ## Automation Examples From 2fcce6e69f2270ff40313f7532bc54f0984f5eb6 Mon Sep 17 00:00:00 2001 From: RichardUUU <14031396+RichardUUU@users.noreply.github.com> Date: Sun, 8 Dec 2019 11:36:55 -0500 Subject: [PATCH 11/12] Patch 1 (#11383) --- source/_integrations/input_select.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_integrations/input_select.markdown b/source/_integrations/input_select.markdown index beb18f39846..b87930e919e 100644 --- a/source/_integrations/input_select.markdown +++ b/source/_integrations/input_select.markdown @@ -62,11 +62,11 @@ Because YAML defines [booleans](https://yaml.org/type/bool.html) as equivalent, ### Restore State -If you set a valid value for 'initial' this integration will start with state set to that value. Otherwise, it will restore the state it had prior to Home Assistant stopping. +If you set a valid value for `initial` this integration will start with state set to that value. Otherwise, it will restore the state it had prior to Home Assistant stopping. ### Services -This integrations provide three services to modify the state of the `input_select`. +This integration provides three services to modify the state of the `input_select`. | Service | Data | Description | | ------- | ---- | ----------- | From 3b39c555823b1f6b61cc5d4aec881f8001affa07 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 8 Dec 2019 22:47:34 +0530 Subject: [PATCH 12/12] Fix permissions (#11402) --- source/_docs/ecosystem/appdaemon.markdown | 0 source/_docs/ecosystem/appdaemon/api.markdown | 0 source/_docs/ecosystem/appdaemon/running.markdown | 0 source/_docs/ecosystem/appdaemon/tutorial.markdown | 0 source/_docs/ecosystem/appdaemon/windows.markdown | 0 source/_docs/ecosystem/hadashboard.markdown | 0 source/images/supported_brands/bizkaibus.png | Bin source/images/supported_brands/gpslogger.png | Bin source/images/supported_brands/repetier.png | Bin source/images/supported_brands/saj.png | Bin 10 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 source/_docs/ecosystem/appdaemon.markdown mode change 100755 => 100644 source/_docs/ecosystem/appdaemon/api.markdown mode change 100755 => 100644 source/_docs/ecosystem/appdaemon/running.markdown mode change 100755 => 100644 source/_docs/ecosystem/appdaemon/tutorial.markdown mode change 100755 => 100644 source/_docs/ecosystem/appdaemon/windows.markdown mode change 100755 => 100644 source/_docs/ecosystem/hadashboard.markdown mode change 100755 => 100644 source/images/supported_brands/bizkaibus.png mode change 100755 => 100644 source/images/supported_brands/gpslogger.png mode change 100755 => 100644 source/images/supported_brands/repetier.png mode change 100755 => 100644 source/images/supported_brands/saj.png diff --git a/source/_docs/ecosystem/appdaemon.markdown b/source/_docs/ecosystem/appdaemon.markdown old mode 100755 new mode 100644 diff --git a/source/_docs/ecosystem/appdaemon/api.markdown b/source/_docs/ecosystem/appdaemon/api.markdown old mode 100755 new mode 100644 diff --git a/source/_docs/ecosystem/appdaemon/running.markdown b/source/_docs/ecosystem/appdaemon/running.markdown old mode 100755 new mode 100644 diff --git a/source/_docs/ecosystem/appdaemon/tutorial.markdown b/source/_docs/ecosystem/appdaemon/tutorial.markdown old mode 100755 new mode 100644 diff --git a/source/_docs/ecosystem/appdaemon/windows.markdown b/source/_docs/ecosystem/appdaemon/windows.markdown old mode 100755 new mode 100644 diff --git a/source/_docs/ecosystem/hadashboard.markdown b/source/_docs/ecosystem/hadashboard.markdown old mode 100755 new mode 100644 diff --git a/source/images/supported_brands/bizkaibus.png b/source/images/supported_brands/bizkaibus.png old mode 100755 new mode 100644 diff --git a/source/images/supported_brands/gpslogger.png b/source/images/supported_brands/gpslogger.png old mode 100755 new mode 100644 diff --git a/source/images/supported_brands/repetier.png b/source/images/supported_brands/repetier.png old mode 100755 new mode 100644 diff --git a/source/images/supported_brands/saj.png b/source/images/supported_brands/saj.png old mode 100755 new mode 100644