more text

This commit is contained in:
Paulus Schoutsen 2019-11-20 15:44:39 -08:00
parent f03e37cca2
commit 7cebe52073
7 changed files with 214 additions and 28 deletions

View File

@ -0,0 +1,60 @@
---
title: "Almond"
description: "Instructions on how to setup Almond within Home Assistant."
logo: almond.png
ha_category:
- Voice
ha_iot_class: Local Polling
ha_release: "0.102"
---
[Almond](https://almond.stanford.edu/) is an open, privacy-preserving virtual assistant by [Stanford Open Virtual Assistant Lab](https://oval.cs.stanford.edu/). It allows you, among other things, to control Home Assistant using natural language. Once installed, it will be available on Lovelace via the microphone icon in the top right.
Almond consists of three parts:
- Almond Server: Knows about Home Assistant and your data. Executes your sentences.
- LUInet: Neural network that converts your sentences into Thingtalk programs.
- Thingpedia: Skills that provide the building blocks for Thingtalk programs.
<a href='/images/integrations/almond/almond-architecture.svg'><img src='/images/integrations/almond/almond-architecture.svg' alt='Architectural overview of how all pieces fit together.' style='border: 0;box-shadow: none;'></a>
## Installation
### Hass.io installation
To install Almond Server on Hass.io, go to Hass.io App Store, search for Almond and click on Install. Once started, it will initiate a config flow to finish set up in Home Assistant. You can find it on the integrations page in the configuration panel.
### Manual installation
You can install Almond Server by following [the instructions in their README](https://github.com/stanford-oval/almond-server#running-almond-server).
Before linking it to Home Assistant, you will need to visit the Almond UI once to create a password. It is by default available on port 3000.
Once installed, configure Almond like this:
```yaml
# Example configuration.yaml entry
almond:
type: local
host: http://127.0.0.1:3000
```
The Almond integration does not update config entries yet. If you make a change to configuration.yaml, you will need to remove the config entry and then restart Home Assistant.
### Almond Web
Stanford offers a hosted version of Almond Server called Almond Web. To use this, go to the integrations page and add Almond using the add integration flow.
### Almond Web - Manual installation
It is possible to set up Almond Web manually. You will need to create your own client ID and secret in the web interface.
```yaml
# Example configuration.yaml entry
almond:
type: oauth2
client_id: AAAAAAAAAAAAA
client_secret: BBBBBBBBBBBBBBBBB
```
You can now go to the integrations page and start the configuration flow.

View File

@ -10,18 +10,30 @@ ha_release: 0.95
The Somfy integration will allow users to integrate their Somfy devices into Home Assistant using the [official API](https://developer.somfy.com/somfy-open-api/apis), unlike the [tahoma](/integrations/tahoma/) component.
### Setting up developer account
## Installation
To connect Somfy, you need to set up a developer account.
Somfy is leveraging the new account linking service. This means that to set up Somfy, you only need to go to the integrations page and click on add new integration.
<div class='videoWrapper'>
<iframe width="560" height="315" src="https://www.youtube.com/embed/y0SECWUVR-M" frameborder="0" allowfullscreen></iframe>
</div>
## Installation with own developer account
It is possible to create your own developer account and configure Somfy via that.
### Setting up developer account
1. Visit [https://developer.somfy.com](https://developer.somfy.com).
2. Log in using your Somfy credentials.
3. Open the *My Apps* menu.
3. Open the _My Apps_ menu.
4. Add a new App:
- App Name: Home Assistant
- Callback URL: `<YOUR_HOME_ASSISTANT_URL>/auth/external/callback`
- Description: Home Assistant instance
- Product: Somfy Open API
5. Once Home Assistant restarted, go to Configuration>Integrations.
6. Select the Somfy integration.
@ -54,5 +66,21 @@ If you use the [tahoma](/integrations/tahoma) component, you will have to exclud
tahoma:
username: YOUR_USERNAME
password: YOUR_PASSWORD
exclude: ['rts:RollerShutterRTSComponent','rts:CurtainRTSComponent','rts:BlindRTSComponent','rts:VenetianBlindRTSComponent','rts:DualCurtainRTSComponent','rts:ExteriorVenetianBlindRTSComponent','io:ExteriorVenetianBlindIOComponent','io:RollerShutterUnoIOComponent','io:RollerShutterWithLowSpeedManagementIOComponent','io:RollerShutterVeluxIOComponent','io:RollerShutterGenericIOComponent','io:WindowOpenerVeluxIOComponent','io:VerticalExteriorAwningIOComponent','io:HorizontalAwningIOComponent']
exclude:
[
"rts:RollerShutterRTSComponent",
"rts:CurtainRTSComponent",
"rts:BlindRTSComponent",
"rts:VenetianBlindRTSComponent",
"rts:DualCurtainRTSComponent",
"rts:ExteriorVenetianBlindRTSComponent",
"io:ExteriorVenetianBlindIOComponent",
"io:RollerShutterUnoIOComponent",
"io:RollerShutterWithLowSpeedManagementIOComponent",
"io:RollerShutterVeluxIOComponent",
"io:RollerShutterGenericIOComponent",
"io:WindowOpenerVeluxIOComponent",
"io:VerticalExteriorAwningIOComponent",
"io:HorizontalAwningIOComponent",
]
```

View File

@ -1,6 +1,6 @@
---
layout: post
title: "Almond & Ada: A privacy-focused voice assistant"
title: "Almond & Ada: privacy-focused voice assistant"
description: "Say Hi! to Almond, a privacy-focused virtual assistant and Ada, a voice assistant powered by Home Assistant."
date: 2019-11-14 0:43:02
date_formatted: "November 20, 2019"
@ -41,9 +41,9 @@ Almond is available to users today in Home Assistant 0.102. It requires an Almon
Almond is set up in a way such that your privacy is still partially preserved even with LUInet running in the cloud. This is made possible because LUInet is only responsible for converting the text into a program, whose details are filled in locally by the Almond Server. For example, LUInet will convert "turn on the lights" into code that Almond Server understands. Only Almond Server will know which lights the user has, how to control them and the context of how the text was received.
### Almond vs. …
### How Almond compares to Google/Alexa
You're probably wondering if Almond is as good as Alexa or Google. And it's not yet. However, it doesn't matter.
You're probably wondering if Almond is as good as Alexa or Google. And it's not yet as good. However, it doesn't matter.
If you want to have an assistant in your home that knows everything about you, it needs to be one that cares about privacy. It needs to be one that is open. That's not negotiable.
@ -84,3 +84,9 @@ We cannot wait until all the pieces are in place to run 100% locally. We need to
## What's next?
With Almond and Ada, we've put the building blocks in place to create voice assistants. It's now time to use it, improve it and surprise us by sharing the things you'll use it for.
## Bonus
I hacked together a quick prototype to allow you to talk to Almond via a Telegram Bot! It's available as a [custom component](https://gist.github.com/balloob/d59cae89d19a14bcec99ce1bde05bd44).
<p class='img'><img src='/images/blog/2019-voice-assistant/telegram.png' style='max-width: 300px' alt='Screenshot of talking to Almond via Telegram.'>Screenshot of talking to Almond via Telegram.</p>

View File

@ -1,6 +1,6 @@
---
layout: post
title: "0.102: TBD - UPDATE DATE"
title: "0.102: Official Android App, Almond, Scene editor"
description: "TBD"
date: 2019-11-14 0:41:02
date_formatted: "November 20, 2019"
@ -11,13 +11,37 @@ categories: Release-Notes
og_image: /images/blog/2019-10-0.102/components.png
---
Almond. Account linking. Mobile apps. WLED - platinum.
Submit new sentences for Almond: https://docs.google.com/forms/d/e/1FAIpQLSeStJfjvueNAiueRVmP47XALRaJlx7tttzJjRfVjX4J546-uA/viewform
Home Assistant 0.102 is here ! It's been quite the trip as we hosted our annual State of the Union last week, which took a lot of energy away from our release. This doesn't mean that we don't have anything to share, just that the notes might be a little less polished.
Android app.
Scene services.
First, we had our State of the Union! It was great. You can watch it back [on YouTube](https://youtu.be/tc17q1Zn0Xs?t=434) or keep an eye out for the blog post coming soon that will summarize all the announcements.
### Create automations with natural language
Alright, so what's new? A lot.
## Android App released!
At the State of the Union we announced that we have released the initial version of the official [Home Assistant Android app](https://play.google.com/store/apps/details?id=io.homeassistant.companion.android). It's still a work in progress, but the basic version already works.
It's been developed by [@CedrickFlocon](https://github.com/CedrickFlocon) and the source is [available on GitHub](https://play.google.com/store/apps/details?id=io.homeassistant.companion.android). We've already seen some other developers step in, so that's great! Keep it coming.
## Private Voice Assistant
We teamed up with Stanford to tightly integrate their open, privacy-preserving virtual assistant Almond into Home Assistant. For more information, see the [separate blog post](/blog/2019/11/14/privacy-focused-voice-assistant/).
## Account Linking
Some companies only allow us to integrate with their products via cloud APIs. These cloud APIs often use [the OAuth2 specification](https://tools.ietf.org/html/rfc6749) to link accounts. The problem with this specification is that it cannot properly handle non-public or decentralized installations.
So if you were to link an integration via OAuth2 before today, you would have to sign up for a developer account, configure Home Assistant and expose your instance publicly before you got to the part where you can link your account. That's not good!
Home Assistant Cloud is introducing a new account linking service that will be freely available for everyone no cloud account required. With this service, Home Assistant controls the developer account, and users will just need to link their accounts.
<div class='videoWrapper'>
<iframe width="560" height="315" src="https://www.youtube.com/embed/y0SECWUVR-M" frameborder="0" allowfullscreen></iframe>
</div>
The first integration to use this new service is [Somfy][somfy docs]. Manual installation is also still possible. This integration is built on top of our [new OAuth2 framework](https://developers.home-assistant.io/docs/en/config_entries_config_flow_handler.html#configuration-via-oauth2). We expect more integration developers to migrate OAuth2 integrations in the future.
## Create automations with natural language
As an experimental feature, we have added a new way to create automations. With the help of Almond, we can transform natural language into Home Assistant automations.
@ -30,7 +54,7 @@ When you click the **+** in the automation editor to add a new automation, you w
Be advised that not all devices are supported yet, and that Almond needs more training for better responses. Check the Almond part for how you can help make Almond better.
### Scene editor
## Scene editor
<p class='img'>
<img src='/images/docs/scenes/editor.png' alt='Screenshot of the scene editor.'></a>
@ -75,7 +99,6 @@ https://www.reddit.com/r/homeassistant/comments/dz1qsi/picture_elements_are_so_f
## New Integrations
- Add Unifi Led ([@florisvdk] - [#27475]) ([unifiled docs]) (new-integration)
- Add available state to unifiled integration ([@florisvdk] - [#28189]) ([unifiled docs]) (new-integration)
- Almond integration ([@balloob] - [#28282]) ([almond docs]) (new-integration)
- Speech to Text component ([@pvizeli] - [#28434]) ([demo docs]) ([stt docs]) (new-integration)
- Add WLED integration ([@frenck] - [#28542]) ([wled docs]) (new-integration)
@ -89,9 +112,7 @@ https://www.reddit.com/r/homeassistant/comments/dz1qsi/picture_elements_are_so_f
- Add switches (on/off zones) to geniushub ([@castaway] - [#28182]) ([geniushub docs]) (new-platform)
- Add config endpoint for scene ([@bramkragten] - [#28429]) ([config docs]) ([homeassistant docs]) (new-platform)
- Add override switch for juicenet ([@jesserockz] - [#28049]) ([juicenet docs]) (new-platform)
- Add additional support over NC ([@pvizeli] - [#28527]) ([cloud docs]) ([stt docs]) (new-platform)
- Add switch platform to WLED integration ([@frenck] - [#28606]) ([wled docs]) (new-platform)
- Add sensor platform to WLED integration ([@frenck] - [#28632]) ([wled docs]) (new-platform)
- Add SST/TTS support over NC ([@pvizeli] - [#28527]) ([cloud docs]) ([stt docs]) (new-platform)
## If you need help...
@ -162,6 +183,25 @@ Experiencing issues introduced by this release? Please report them in our [issue
- Bump ZHA quirks to 0.0.28 ([@dmulcahey] - [#28750]) ([zha docs]) (beta fix)
- Updated frontend to 20191114.0 ([@bramkragten] - [#28768]) ([frontend docs]) (beta fix)
- Fix account link version check ([@balloob] - [#28770]) ([cloud docs]) (beta fix)
- Fix amazon dependency conflicts ([@bbrendon] - [#28217]) ([amazon_polly docs]) ([aws docs]) (beta fix)
- Change unique id for SAJ sensor based on device SN ([@fredericvl] - [#28663]) ([saj docs]) (breaking change) (beta fix)
- Fix changing venstar operation_mode ([@iamtpage] - [#28754]) ([venstar docs]) (beta fix)
- Fix Repetier integration entity indexing ([@MTrab] - [#28766]) ([repetier docs]) (beta fix)
- Fix HomematicIP Cloud Alarm Control Panel support for basic mode ([@SukramJ] - [#28778]) ([homematicip_cloud docs]) (beta fix)
- Fix Swisscom empty response received ([@LeoCal] - [#28782]) ([swisscom docs]) (beta fix)
- Fix broken postnl sensor ([@peternijssen] - [#28794]) ([postnl docs]) (beta fix)
- Updated frontend to 20191115.0 ([@bramkragten] - [#28797]) ([frontend docs]) (beta fix)
- Fix Comfoconnect errors during startup ([@michaelarnauts] - [#28802]) ([comfoconnect docs]) (beta fix)
- Fix miio air quality sensor ([@valkjsaaa] - [#28828]) ([xiaomi_miio docs]) (beta fix)
- Update pyatmo to 3.0.1 ([@cgtobi] - [#28829]) ([netatmo docs]) (beta fix)
- Updated frontend to 20191118.0 ([@bramkragten] - [#28852]) ([frontend docs]) (beta fix)
- Fix documentation URL in failed platform config check ([@frenck] - [#28814]) (beta fix)
- Fix Synology camera whitelist ([@h4de5] - [#28822]) ([synology docs]) (beta fix)
- Fix setting colors while reproducing a lights state ([@Santobert] - [#28871]) ([light docs]) (beta fix)
- Updated frontend to 20191119.0 ([@bramkragten] - [#28875]) ([frontend docs]) (beta fix)
- Updated frontend to 20191119.1 ([@bramkragten] - [#28881]) ([frontend docs]) (beta fix)
- Updated frontend to 20191119.2 ([@bramkragten] - [#28896]) ([frontend docs]) (beta fix)
- Fix Almond onboarding url when using cloud ([@bramkragten] - [#28908]) ([almond docs]) (beta fix)
## All changes
@ -382,6 +422,25 @@ Experiencing issues introduced by this release? Please report them in our [issue
- Bump ZHA quirks to 0.0.28 ([@dmulcahey] - [#28750]) ([zha docs]) (beta fix)
- Updated frontend to 20191114.0 ([@bramkragten] - [#28768]) ([frontend docs]) (beta fix)
- Fix account link version check ([@balloob] - [#28770]) ([cloud docs]) (beta fix)
- Fix amazon dependency conflicts ([@bbrendon] - [#28217]) ([amazon_polly docs]) ([aws docs]) (beta fix)
- Change unique id for SAJ sensor based on device SN ([@fredericvl] - [#28663]) ([saj docs]) (breaking change) (beta fix)
- Fix changing venstar operation_mode ([@iamtpage] - [#28754]) ([venstar docs]) (beta fix)
- Fix Repetier integration entity indexing ([@MTrab] - [#28766]) ([repetier docs]) (beta fix)
- Fix HomematicIP Cloud Alarm Control Panel support for basic mode ([@SukramJ] - [#28778]) ([homematicip_cloud docs]) (beta fix)
- Fix Swisscom empty response received ([@LeoCal] - [#28782]) ([swisscom docs]) (beta fix)
- Fix broken postnl sensor ([@peternijssen] - [#28794]) ([postnl docs]) (beta fix)
- Updated frontend to 20191115.0 ([@bramkragten] - [#28797]) ([frontend docs]) (beta fix)
- Fix Comfoconnect errors during startup ([@michaelarnauts] - [#28802]) ([comfoconnect docs]) (beta fix)
- Fix miio air quality sensor ([@valkjsaaa] - [#28828]) ([xiaomi_miio docs]) (beta fix)
- Update pyatmo to 3.0.1 ([@cgtobi] - [#28829]) ([netatmo docs]) (beta fix)
- Updated frontend to 20191118.0 ([@bramkragten] - [#28852]) ([frontend docs]) (beta fix)
- Fix documentation URL in failed platform config check ([@frenck] - [#28814]) (beta fix)
- Fix Synology camera whitelist ([@h4de5] - [#28822]) ([synology docs]) (beta fix)
- Fix setting colors while reproducing a lights state ([@Santobert] - [#28871]) ([light docs]) (beta fix)
- Updated frontend to 20191119.0 ([@bramkragten] - [#28875]) ([frontend docs]) (beta fix)
- Updated frontend to 20191119.1 ([@bramkragten] - [#28881]) ([frontend docs]) (beta fix)
- Updated frontend to 20191119.2 ([@bramkragten] - [#28896]) ([frontend docs]) (beta fix)
- Fix Almond onboarding url when using cloud ([@bramkragten] - [#28908]) ([almond docs]) (beta fix)
[#26563]: https://github.com/home-assistant/home-assistant/pull/26563
[#26656]: https://github.com/home-assistant/home-assistant/pull/26656
@ -445,6 +504,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
[#28214]: https://github.com/home-assistant/home-assistant/pull/28214
[#28215]: https://github.com/home-assistant/home-assistant/pull/28215
[#28216]: https://github.com/home-assistant/home-assistant/pull/28216
[#28217]: https://github.com/home-assistant/home-assistant/pull/28217
[#28220]: https://github.com/home-assistant/home-assistant/pull/28220
[#28225]: https://github.com/home-assistant/home-assistant/pull/28225
[#28228]: https://github.com/home-assistant/home-assistant/pull/28228
@ -575,6 +635,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
[#28644]: https://github.com/home-assistant/home-assistant/pull/28644
[#28651]: https://github.com/home-assistant/home-assistant/pull/28651
[#28658]: https://github.com/home-assistant/home-assistant/pull/28658
[#28663]: https://github.com/home-assistant/home-assistant/pull/28663
[#28664]: https://github.com/home-assistant/home-assistant/pull/28664
[#28667]: https://github.com/home-assistant/home-assistant/pull/28667
[#28674]: https://github.com/home-assistant/home-assistant/pull/28674
@ -598,8 +659,25 @@ Experiencing issues introduced by this release? Please report them in our [issue
[#28737]: https://github.com/home-assistant/home-assistant/pull/28737
[#28746]: https://github.com/home-assistant/home-assistant/pull/28746
[#28750]: https://github.com/home-assistant/home-assistant/pull/28750
[#28754]: https://github.com/home-assistant/home-assistant/pull/28754
[#28766]: https://github.com/home-assistant/home-assistant/pull/28766
[#28768]: https://github.com/home-assistant/home-assistant/pull/28768
[#28770]: https://github.com/home-assistant/home-assistant/pull/28770
[#28778]: https://github.com/home-assistant/home-assistant/pull/28778
[#28782]: https://github.com/home-assistant/home-assistant/pull/28782
[#28794]: https://github.com/home-assistant/home-assistant/pull/28794
[#28797]: https://github.com/home-assistant/home-assistant/pull/28797
[#28802]: https://github.com/home-assistant/home-assistant/pull/28802
[#28814]: https://github.com/home-assistant/home-assistant/pull/28814
[#28822]: https://github.com/home-assistant/home-assistant/pull/28822
[#28828]: https://github.com/home-assistant/home-assistant/pull/28828
[#28829]: https://github.com/home-assistant/home-assistant/pull/28829
[#28852]: https://github.com/home-assistant/home-assistant/pull/28852
[#28871]: https://github.com/home-assistant/home-assistant/pull/28871
[#28875]: https://github.com/home-assistant/home-assistant/pull/28875
[#28881]: https://github.com/home-assistant/home-assistant/pull/28881
[#28896]: https://github.com/home-assistant/home-assistant/pull/28896
[#28908]: https://github.com/home-assistant/home-assistant/pull/28908
[@adminiuga]: https://github.com/Adminiuga
[@anonym-tsk]: https://github.com/Anonym-tsk
[@bkpepe]: https://github.com/BKPepe
@ -612,6 +690,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
[@jongilmore]: https://github.com/JonGilmore
[@kane610]: https://github.com/Kane610
[@leocal]: https://github.com/LeoCal
[@mtrab]: https://github.com/MTrab
[@martinhjelmare]: https://github.com/MartinHjelmare
[@misiu]: https://github.com/Misiu
[@onfreund]: https://github.com/OnFreund
@ -630,6 +709,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
[@bachya]: https://github.com/bachya
[@balloob]: https://github.com/balloob
[@basnijholt]: https://github.com/basnijholt
[@bbrendon]: https://github.com/bbrendon
[@bendavid]: https://github.com/bendavid
[@bluestripe]: https://github.com/bluestripe
[@bouwew]: https://github.com/bouwew
@ -660,6 +740,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
[@gerard33]: https://github.com/gerard33
[@gngj]: https://github.com/gngj
[@guillempages]: https://github.com/guillempages
[@h4de5]: https://github.com/h4de5
[@hfurubotten]: https://github.com/hfurubotten
[@iamtpage]: https://github.com/iamtpage
[@jesserockz]: https://github.com/jesserockz
@ -674,12 +755,14 @@ Experiencing issues introduced by this release? Please report them in our [issue
[@marthoc]: https://github.com/marthoc
[@mezz64]: https://github.com/mezz64
[@mflage]: https://github.com/mflage
[@michaelarnauts]: https://github.com/michaelarnauts
[@michaeldavie]: https://github.com/michaeldavie
[@nkaminski]: https://github.com/nkaminski
[@ochlocracy]: https://github.com/ochlocracy
[@oischinger]: https://github.com/oischinger
[@pattyland]: https://github.com/pattyland
[@persandstrom]: https://github.com/persandstrom
[@peternijssen]: https://github.com/peternijssen
[@pvizeli]: https://github.com/pvizeli
[@rohankapoorcom]: https://github.com/rohankapoorcom
[@rutkai]: https://github.com/rutkai
@ -697,6 +780,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
[@timgates42]: https://github.com/timgates42
[@tlrobinson]: https://github.com/tlrobinson
[@ttroy50]: https://github.com/ttroy50
[@valkjsaaa]: https://github.com/valkjsaaa
[@vangorra]: https://github.com/vangorra
[@yeralin]: https://github.com/yeralin
[@yjajkiew]: https://github.com/yjajkiew
@ -704,15 +788,18 @@ Experiencing issues introduced by this release? Please report them in our [issue
[alarm_control_panel docs]: /integrations/alarm_control_panel/
[alexa docs]: /integrations/alexa/
[almond docs]: /integrations/almond/
[amazon_polly docs]: /integrations/amazon_polly/
[androidtv docs]: /integrations/androidtv/
[asuswrt docs]: /integrations/asuswrt/
[automation docs]: /integrations/automation/
[avea docs]: /integrations/avea/
[aws docs]: /integrations/aws/
[azure_servicebus docs]: /integrations/azure_servicebus/
[bluesound docs]: /integrations/bluesound/
[bmw_connected_drive docs]: /integrations/bmw_connected_drive/
[climate docs]: /integrations/climate/
[cloud docs]: /integrations/cloud/
[comfoconnect docs]: /integrations/comfoconnect/
[config docs]: /integrations/config/
[conversation docs]: /integrations/conversation/
[coolmaster docs]: /integrations/coolmaster/
@ -761,6 +848,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
[iss docs]: /integrations/iss/
[juicenet docs]: /integrations/juicenet/
[keyboard_remote docs]: /integrations/keyboard_remote/
[light docs]: /integrations/light/
[lock docs]: /integrations/lock/
[lutron docs]: /integrations/lutron/
[media_extractor docs]: /integrations/media_extractor/
@ -780,10 +868,12 @@ Experiencing issues introduced by this release? Please report them in our [issue
[plex docs]: /integrations/plex/
[plugwise docs]: /integrations/plugwise/
[point docs]: /integrations/point/
[postnl docs]: /integrations/postnl/
[proxy docs]: /integrations/proxy/
[ps4 docs]: /integrations/ps4/
[qrcode docs]: /integrations/qrcode/
[reddit docs]: /integrations/reddit/
[repetier docs]: /integrations/repetier/
[saj docs]: /integrations/saj/
[samsungtv docs]: /integrations/samsungtv/
[shiftr docs]: /integrations/shiftr/
@ -793,6 +883,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
[ssdp docs]: /integrations/ssdp/
[stt docs]: /integrations/stt/
[swisscom docs]: /integrations/swisscom/
[synology docs]: /integrations/synology/
[systemmonitor docs]: /integrations/systemmonitor/
[tahoma docs]: /integrations/tahoma/
[telegram_bot docs]: /integrations/telegram_bot/

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 165 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB