mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-13 04:16:48 +00:00
Merge branch 'current' into next
This commit is contained in:
commit
ad3c013a44
@ -66,7 +66,7 @@ GEM
|
||||
kramdown-parser-gfm (1.1.0)
|
||||
kramdown (~> 2.0)
|
||||
liquid (4.0.3)
|
||||
listen (3.3.1)
|
||||
listen (3.3.3)
|
||||
rb-fsevent (~> 0.10, >= 0.10.3)
|
||||
rb-inotify (~> 0.9, >= 0.9.10)
|
||||
mercenary (0.4.0)
|
||||
|
@ -9,7 +9,7 @@ You need to have a compatible Z-Wave stick or module installed. This needs to be
|
||||
|
||||
<div class='note'>
|
||||
|
||||
There have [been reports](https://www.raspberrypi.org/forums/viewtopic.php?f=28&t=245031#p1502030) of the Aeotec stick not working on the Raspberry Pi 4.
|
||||
There are [known compatability issues](https://www.raspberrypi.org/forums/viewtopic.php?f=28&t=245031#p1502030) with older hardware versions of the Aeotec stick not working on the Raspberry Pi 4. Aeotec has released a 2020 hardware revision ZW090-A with Pi 4 compatibility. Both hardware revisions are still being sold, make informed purchasing decisions if using paired with a Pi 4.
|
||||
|
||||
</div>
|
||||
|
||||
|
@ -64,11 +64,11 @@ stop_colortemp:
|
||||
default: 1900
|
||||
type: integer
|
||||
brightness:
|
||||
description: The brightness of the lights.
|
||||
description: Constant brightness of the lights. Besides color temperature, brightness is also adjusted unless a value is specified here.
|
||||
required: false
|
||||
type: integer
|
||||
disable_brightness_adjust:
|
||||
description: If true, brightness will not be adjusted besides color temperature.
|
||||
description: If true, brightness will not be adjusted, only color temperature.
|
||||
required: false
|
||||
type: boolean
|
||||
default: false
|
||||
|
@ -25,7 +25,7 @@ host:
|
||||
type: string
|
||||
default: localhost
|
||||
port:
|
||||
description: This is a description of what this key is for.
|
||||
description: Port on graphite host.
|
||||
required: false
|
||||
type: integer
|
||||
default: 2003
|
||||
|
@ -40,6 +40,9 @@ Note that it depends on the appliance and on API permissions which of the featur
|
||||
3. Add the client ID and client secret to your `configuration.yaml` (see below).
|
||||
4. Once Home Assistant has restarted, go to Configuration > Integrations.
|
||||
5. Select the Home Connect integration.
|
||||
6. You will be prompted to open a web page and authenticate your app with Home Connect.
|
||||
7. Use your Home Connect account details associated with your developer app (this may not be your developer account details you created but will be the account you use to login to the original Home Connect App from Bosch/Siemens).
|
||||
8. You will know it works when you are prompted to allow Home Assistant to access your Home Connect data, including the list of devices accessible to the original Home Connect app.
|
||||
|
||||
### Configuration
|
||||
|
||||
|
@ -71,7 +71,7 @@ action:
|
||||
entity_id: light.living_room
|
||||
```
|
||||
|
||||
#### Service `homeassistant.turn_on`
|
||||
### Service `homeassistant.turn_on`
|
||||
|
||||
Generic service to turn devices on under any domain. Same usage as the light.turn_on, switch.turn_on, etc. services.
|
||||
|
||||
|
@ -25,7 +25,7 @@ Most lights do not support all attributes. You can check the integration documen
|
||||
|
||||
| Service data attribute | Optional | Description |
|
||||
| ---------------------- | -------- | ----------- |
|
||||
| `entity_id` | no | String or list of strings that point at `entity_id`s of lights. To target all the lights use all as `entity_id`.
|
||||
| `entity_id` | no | String or list of strings that point at `entity_id`s of lights. To target all the lights use `all` as `entity_id`.
|
||||
| `transition` | yes | Number that represents the time (in seconds) the light should take to transition to the new state.
|
||||
| `profile` | yes | String with the name of one of the [built-in profiles](https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/light/light_profiles.csv) (relax, energize, concentrate, reading) or one of the custom profiles defined in `light_profiles.csv` in the current working directory. Light profiles define an xy color, brightness and a transition value (if no transition is desired, set to 0 or leave out the column entirely). If a profile is given, and a brightness is set, then the profile brightness will be overwritten.
|
||||
| `hs_color` | yes | A list containing two floats representing the hue and saturation of the color you want the light to be. Hue is scaled 0-360, and saturation is scaled 0-100.
|
||||
|
@ -67,6 +67,12 @@ region:
|
||||
default: "`eastus`"
|
||||
{% endconfiguration %}
|
||||
|
||||
<div class='note'>
|
||||
|
||||
Not all Azure regions support high-quality neural voices. Use [this overview](https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/regions#standard-and-neural-voices) to determine the availability of standard and neural voices by region/endpoint.
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
## Full configuration example
|
||||
|
||||
|
@ -52,8 +52,11 @@ You will need to follow the instructions in [Device Access Registration](https:/
|
||||
|
||||
- Accept the Terms of Service.
|
||||
- Pay a fee (currently US$5).
|
||||
- Register in the Device Access Console to get a `project_id`.
|
||||
- [Register for Device Access](https://developers.google.com/nest/device-access/get-started#register_for_device_access) to get a `project_id`.
|
||||
- [Set up Google Cloud Platform](https://developers.google.com/nest/device-access/get-started#set_up_google_cloud_platform) and enable the
|
||||
API
|
||||
- Authorize your Google Account and create OAuth credentials to get a `client_id` and `client_secret`.
|
||||
- Configure *Authorized redirect URIs* with the URL you use to access Home Assistant including the path for the OAuth callback , e.g. `https://<your_home_assistant_url_or_local_ip>:<port>/auth/external/callback` (also see `redirect_url_mismatch` troubleshooting below)
|
||||
|
||||
<div class='note warning'>
|
||||
It is currently not possible to share/be invited to a home with a G-Suite account. Make sure that you pay the fee with an account that has access to your devices.
|
||||
@ -64,9 +67,7 @@ steps are:
|
||||
|
||||
- [Enable events](https://developers.google.com/nest/device-access/subscribe-to-events#enable_events) in the [Device Access Console](https://console.nest.google.com/device-access/project-list) which creates a Pub/Sub topic.
|
||||
- [Enable the Cloud Pub/Sub API](https://console.developers.google.com/apis/library/pubsub.googleapis.com) in the Cloud Console.
|
||||
- [Create a Pub/Sub subscription](https://console.cloud.google.com/cloudpubsub/subscription/list) in the Google Cloud Platform console. Make sure to create a pull subscription and get a `subscriber_id` ("Subscription ID" in Google Cloud Console). The *Topic name* should match the topic name in the device access console.
|
||||
|
||||
Additionally, Home Assistant must be configured with a URL (e.g., external exposed [`http`](/integrations/http/), Nabu Casa, etc). When setting up the OAuth credentials, make sure the Home Assistant URL is in the list of *Authorized redirect URIs*, so the redirect back to Home Assistant can get an OAuth authorization code.
|
||||
- [Create a Pub/Sub subscription](https://console.cloud.google.com/cloudpubsub/subscription/list) in the Google Cloud Platform console. Make sure to create a pull subscription and get a `subscriber_id` ("Subscription name" in Google Cloud Console). The *Topic name* should match the topic name in the device access console.
|
||||
|
||||
Follow all of the instructions in [Device Access: Quick Start Guide](https://developers.google.com/nest/device-access/get-started) carefully as it is easy to make a configuration mistake that is difficult to debug. It is recommended to exercise the entire guide, including the command to test out the API, to make sure that it is working before configuring Home Assistant.
|
||||
|
||||
@ -118,11 +119,15 @@ Once your developer account is set up and you have a valid `nest` entry in `conf
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
- See [No URL Available](/more-info/no-url-available) for guidance on setup issues related to URLs.
|
||||
- For general trouble with the SDM API OAuth authorization flow with Google, see [Troubleshooting](https://developers.google.com/nest/device-access/authorize#troubleshooting).
|
||||
|
||||
- For trouble with the SDM API OAuth authorization flow with Google, see [Troubleshooting](https://developers.google.com/nest/device-access/authorize#troubleshooting) which includes guidance for errors like `redirect_uri_mismatch` where Google needs to know about your external URL
|
||||
- *Error 500: redirect_url_mismatch* means that you need visit the [GCP credentials](https://console.developers.google.com/apis/credentials) page and modify your OAuth2.0 Client ID to add the correct Home Asssitant callback URL. The error message tells you the exact URL that needs to be added, including any ports or paths like `/auth/external/callback` path. See [Redirect uri mismatch](https://developers.google.com/nest/device-access/authorize#redirect_uri_mismatch) for more details.
|
||||
|
||||
- You can see stats about your subscriber in the [Cloud Console](https://console.cloud.google.com/cloudpubsub/subscription/list) which includes # of messages that have yet to be acknowledged. This can tell you if the publisher is working, or if the subscriber is working. You can also `View Messages` to see any pending messages. Many old unacknowledged messages may indicate the subscriber is not working properly.
|
||||
- *No devices or entities are created* if the SDM API is not returning any devices for the authorized account. Double double check that GCP is configured correctly to [Enable the API](https://developers.google.com/nest/device-access/get-started#set_up_google_cloud_platform) and authorize at least one device in the OAuth setup flow. If you have trouble here, then you may want to walk through the [Get Started: Device Access](https://developers.google.com/nest/device-access/get-started) guide again and issue commands directly against the API until you successfully get back devices.
|
||||
|
||||
- *Not receiving updates* typically means a problem with the subscriber configuration. Changes for things like sensors or thermostat temperature set points should be instantly published to a topic and received by the Home Assistant susbcriber when everything is configured correctly.
|
||||
|
||||
- You can see stats about your subscriber in the [Cloud Console](https://console.cloud.google.com/cloudpubsub/subscription/list) which includes counts of messages published by your devices, and how many have been acknowledged by your Home Assistant subscriber. You can also `View Messages` to see examples of published. Many old unacknowledged messages indicate the subscriber is not receivng the messages and working properly or not connected at all. Double check the `subscriber_id` matches the `Subscription Name`
|
||||
|
||||
- To aid in diagnosing subscriber problems or camera stream issues it may help to turn up verbose logging by adding some or all of these to your `configuration.yaml` depending on where you are having trouble:
|
||||
|
||||
@ -142,7 +147,6 @@ logger:
|
||||
google_nest_sdm.event: debug
|
||||
google.cloud.pubsub_v1: debug
|
||||
google.cloud.pubsub_v1.subscriber._protocol.streaming_pull_manager: debug
|
||||
|
||||
```
|
||||
|
||||
## Camera
|
||||
|
@ -63,7 +63,7 @@ For services which have support for sending images.
|
||||
{ "message": "Test plugin",
|
||||
"data": {
|
||||
"photo": {
|
||||
"url": "http://www.gbsun.de/gbpics/berge/berge106.jpg"
|
||||
"url": "https://raw.githubusercontent.com/home-assistant/home-assistant.io/current/source/images/default-social.png"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -78,7 +78,7 @@ action:
|
||||
message: "Test plugin"
|
||||
data:
|
||||
photo:
|
||||
url: "http://www.gbsun.de/gbpics/berge/berge106.jpg"
|
||||
url: "https://raw.githubusercontent.com/home-assistant/home-assistant.io/current/source/images/default-social.png"
|
||||
```
|
||||
|
||||
|
||||
|
@ -37,8 +37,6 @@ Both events have three attributes:
|
||||
|
||||
- **sensor**: Name of `opensky` sensor that fired the event.
|
||||
- **callsign**: Callsign of the flight.
|
||||
- **latitude**: Latitude of the flight.
|
||||
- **longitude**: Longitude of the flight.
|
||||
- **altitude**: Altitude of the flight in meters.
|
||||
|
||||
To receive notifications of the entering flights using the [Home Assistant Companion App](https://companion.home-assistant.io/), add the following lines to your `configuration.yaml` file:
|
||||
|
@ -215,22 +215,22 @@ Note that purging will not immediately decrease disk space usage but it will sig
|
||||
|
||||
## Custom database engines
|
||||
|
||||
| Database engine | `db_url` |
|
||||
| :----------------------------- | :----------------------------------------------------------------------------------------------------- |
|
||||
| SQLite | `sqlite:////PATH/TO/DB_NAME` |
|
||||
| MariaDB (omit pymysql) | `mysql://user:password@SERVER_IP/DB_NAME?charset=utf8` |
|
||||
| MariaDB (omit pymysql, Socket) | `mysql://user:password@SERVER_IP/DB_NAME?unix_socket=/var/run/mysqld/mysqld.sock&charset=utf8` |
|
||||
| MySQL | `mysql://SERVER_IP/DB_NAME?charset=utf8` |
|
||||
| MySQL | `mysql://user:password@SERVER_IP/DB_NAME?charset=utf8` |
|
||||
| MySQL (Socket) | `mysql://user:password@localhost/DB_NAME?unix_socket=/var/run/mysqld/mysqld.sock&charset=utf8` |
|
||||
| MariaDB | `mysql+pymysql://SERVER_IP/DB_NAME?charset=utf8` |
|
||||
| MariaDB | `mysql+pymysql://user:password@SERVER_IP/DB_NAME?charset=utf8` |
|
||||
| MariaDB (Socket) | `mysql+pymysql://user:password@localhost/DB_NAME?unix_socket=/var/run/mysqld/mysqld.sock&charset=utf8` |
|
||||
| PostgreSQL | `postgresql://SERVER_IP/DB_NAME` |
|
||||
| PostgreSQL | `postgresql://user:password@SERVER_IP/DB_NAME` |
|
||||
| PostgreSQL (Socket) | `postgresql://@/DB_NAME` |
|
||||
| PostgreSQL (Custom socket dir) | `postgresql://@/DB_NAME?host=/path/to/dir` |
|
||||
| MS SQL Server | `mssql+pyodbc://username:password@SERVER_IP/DB_NAME?charset=utf8;DRIVER={DRIVER};Port=1433;` |
|
||||
| Database engine | `db_url` |
|
||||
| :----------------------------- | :-------------------------------------------------------------------------------------------------------- |
|
||||
| SQLite | `sqlite:////PATH/TO/DB_NAME` |
|
||||
| MariaDB (omit pymysql) | `mysql://user:password@SERVER_IP/DB_NAME?charset=utf8mb4` |
|
||||
| MariaDB (omit pymysql, Socket) | `mysql://user:password@SERVER_IP/DB_NAME?unix_socket=/var/run/mysqld/mysqld.sock&charset=utf8mb4` |
|
||||
| MySQL | `mysql://SERVER_IP/DB_NAME?charset=utf8mb4` |
|
||||
| MySQL | `mysql://user:password@SERVER_IP/DB_NAME?charset=utf8mb4` |
|
||||
| MySQL (Socket) | `mysql://user:password@localhost/DB_NAME?unix_socket=/var/run/mysqld/mysqld.sock&charset=utf8mb4` |
|
||||
| MariaDB | `mysql+pymysql://SERVER_IP/DB_NAME?charset=utf8mb4` |
|
||||
| MariaDB | `mysql+pymysql://user:password@SERVER_IP/DB_NAME?charset=utf8mb4` |
|
||||
| MariaDB (Socket) | `mysql+pymysql://user:password@localhost/DB_NAME?unix_socket=/var/run/mysqld/mysqld.sock&charset=utf8mb4` |
|
||||
| PostgreSQL | `postgresql://SERVER_IP/DB_NAME` |
|
||||
| PostgreSQL | `postgresql://user:password@SERVER_IP/DB_NAME` |
|
||||
| PostgreSQL (Socket) | `postgresql://@/DB_NAME` |
|
||||
| PostgreSQL (Custom socket dir) | `postgresql://@/DB_NAME?host=/path/to/dir` |
|
||||
| MS SQL Server | `mssql+pyodbc://username:password@SERVER_IP/DB_NAME?charset=utf8;DRIVER={DRIVER};Port=1433;` |
|
||||
|
||||
<div class='note'>
|
||||
|
||||
|
@ -34,6 +34,7 @@ The following OID examples pull the current MAC Address table from a router. Thi
|
||||
| Aruba | IAP325 on AOS 6.5.4.8 | `1.3.6.1.4.1.14823.2.3.3.1.2.4.1.1` |
|
||||
| BiPAC | 7800DXL Firmware 2.32e | `1.3.6.1.2.1.17.7.1.2.2.1.1` |
|
||||
| DD-WRT | unknown version/model | `1.3.6.1.2.1.4.22.1.2` |
|
||||
| IPFire | 2.25 | `1.3.6.1.2.1.4.22.1.2` |
|
||||
| MikroTik | unknown RouterOS version/model | `1.3.6.1.4.1.14988.1.1.1.2.1.1` |
|
||||
| MikroTik | RouterOS 6.x on RB2011 | `1.3.6.1.2.1.4.22.1.2` |
|
||||
| OpenWrt | Chaos Calmer 15.05 | `1.3.6.1.2.1.4.22.1.2` |
|
||||
|
@ -36,6 +36,26 @@ For many of these devices you need an access token, the first section will descr
|
||||
|
||||
## Retrieving the Access Token
|
||||
|
||||
### Xiaomi Cloud Tokens Extractor
|
||||
|
||||
One of Home Assistant users wrote a tokens extractor tool, which is currently the easiest way to retrieve tokens for all devices assigned to Xiaomi account.
|
||||
[In the repository](https://github.com/PiotrMachowski/Xiaomi-cloud-tokens-extractor) there's executable for convenient use on Windows or Python script to be run on any platform. If you do not wish to run executable, then you can run it using the source code:
|
||||
|
||||
1. Install requirements:
|
||||
|
||||
```bash
|
||||
pip3 install pycryptodome pybase64 requests
|
||||
```
|
||||
|
||||
2. Run script
|
||||
|
||||
```bash
|
||||
python3 token_extractor.py
|
||||
```
|
||||
|
||||
3. Provide e-mail address or username for Xiaomi's account, password and country of the account (most used: CN - China Mainland, DE - Germany etc.)
|
||||
4. Script will print out all devices connected to the account with their IP address and tokens for use in Home Assistant.
|
||||
|
||||
### Xiaomi Home app (Xiaomi Aqara Gateway, Android & iOS)
|
||||
|
||||
1. Install the Xiaomi Home app.
|
||||
|
@ -125,7 +125,7 @@ Press `Submit`. The success dialog will appear or an error will be displayed in
|
||||
If you are use ZiGate or Sonoff ZBBridge you have to use some special usb_path configuration:
|
||||
|
||||
- ZiGate USB TTL or DIN: `/dev/ttyUSB0` or `auto` to auto discover the zigate
|
||||
- PiZigate : `pizigate:/dev/serial0`
|
||||
- PiZigate : `pizigate:/dev/ttyS0`
|
||||
- Wifi Zigate : `socket://[IP]:[PORT]` for example `socket://192.168.1.10:9999`
|
||||
- Sonoff ZBBridge : `socket://[IP]:[PORT]` for example `socket://192.168.1.11:8888`
|
||||
|
||||
@ -224,6 +224,19 @@ To add a new device:
|
||||
1. Reset your Zigbee devices according to the device instructions provided by the manufacturer (e.g., turn on/off lights up to 10 times, switches usually have a reset button/pin). It might take a few seconds for the devices to appear. You can click on **Show logs** for more verbose output.
|
||||
1. Once the device is found, it will appear on that page and will be automatically added to your devices. You can optionally change its name and add it to an area (you can change this later). You can search again to add another device, or you can go back to the list of added devices.
|
||||
|
||||
### Using router devices
|
||||
|
||||
You use routers to increase the number of Zigbee devices that can be used in a network. The total number of Zigbee devices that you have on a Zigbee network depends on a few things, but you should know that Zigbee coordinator hardware and firmware only plays a larger role in Zigbee networks with a lot of devices. More important is how many directly connected devices ("direct children") versus how many routers are connected to your Zigbee coordinator. Zigpy library which ZHA uses has an upper limit is 32 direct children but if your Zigbee coordinator hardware is powerful enough then you can still have hundreds of Zigbee devices connected through routers.
|
||||
|
||||
Even the least powerful Zigbee coordinator hardware supported by Zigpy is CC2530/2531 and its default firmware, only supports 20 devices connected directly to the coordinator. However, by having routers in your Zigbee network the mesh network size can be extended. You can assume that most, if not all mains/AC-powered devices, e.g., wall-plugs and always powered-on lightbulbs in your Zigbee network, can serve as a router. You can even use CC2530/CC2531 with router firmware, as additional routers (which in their turn have a limit of 21 devices).
|
||||
|
||||
An example using the default CC2531 coordinator firmware + two CC2531 routers; Your device limit will be:
|
||||
|
||||
- Coordinator: 15 devices - 2 routers = 13
|
||||
- Router one: + 21 devices
|
||||
- Router two: + 21 devices
|
||||
- Total device limit = **55 devices**
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
To help resolve any kinks or compatibility problems by reporting bugs as issues with debug logs. Please follow the instructions in this troubleshooting section.
|
||||
|
133
source/_posts/2020-11-30-community-highlights.markdown
Normal file
133
source/_posts/2020-11-30-community-highlights.markdown
Normal file
@ -0,0 +1,133 @@
|
||||
---
|
||||
title: "Community Highlights: 7th edition"
|
||||
description: "A 'Dad status' board, illuminating the steps of your stairs and the most beautiful thermostat you've ever seen"
|
||||
date: 2020-12-01 00:00:00
|
||||
date_formatted: "December 1, 2020"
|
||||
author: Franck Nijhof
|
||||
author_twitter: frenck
|
||||
categories: Community
|
||||
og_image: /images/blog/2020-12-01-community-highlights/social.png
|
||||
---
|
||||
|
||||
The 7th edition of the Home Assistant Community Highlights! Some interesting
|
||||
things popped up around our community, we thought was worth sharing.
|
||||
|
||||
Troy Hunt has jumped into our wonderful world and shared his journey
|
||||
in a blog post series. Some nice examples on a DIY solution for mounting a
|
||||
wall tablet and how to arm your alarm with a toothbrush!
|
||||
|
||||
## Troy Hunt is unraveling IoT using Home Assistant
|
||||
|
||||
If you have never heard of Troy Hunt before, he is a web security specialist
|
||||
and mostly known for creating ["Have I Been Pwned"][hibp] ([Home Assistant integration](/integrations/haveibeenpwned/)).
|
||||
|
||||
Troy has been diving into the world of IoT and started automating his home,
|
||||
using... Home Assistant!
|
||||
|
||||
<blockquote>
|
||||
<p>I'm massively impressed with HA and nothing else I've seen along my IoT journey comes even close to comparing. If you're going to do IoT in any meaningful way, you start with HA.</p>
|
||||
<b class=source>Troy Hunt</b>
|
||||
</blockquote>
|
||||
|
||||
In 5 blogs, he writes about his journey in the big
|
||||
world of IoT:
|
||||
|
||||
- [Part 1: It's a Mess... But Then There's Home Assistant][p1]
|
||||
- [Part 2: IP Addresses, Network, Zigbee, Custom Firmware and Soldering][p2]
|
||||
- [Part 3: Security][p3]
|
||||
- [Part 4: Making it All Work for Humans][p4]
|
||||
- [Part 5: Practical Use Case Videos][p5]
|
||||
|
||||
The 5th part Troy made 11! short and quick videos, showing actual use cases in
|
||||
his home. Really cool and inspiring!
|
||||
|
||||
<div class='videoWrapper'>
|
||||
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/videoseries?list=PL7LAAxaabizMcH3kueW9Ub0oif0FngweI" frameborder="0" allowfullscreen></iframe>
|
||||
</div>
|
||||
|
||||
[hibp]: https://haveibeenpwned.com/
|
||||
[p1]: https://www.troyhunt.com/iot-unravelled-part-1-its-a-mess-but-then-theres-home-assistant/
|
||||
[p2]: https://www.troyhunt.com/iot-unravelled-part-2-ip-addresses-network-zigbee-custom-firmware-and-soldering/
|
||||
[p3]: https://www.troyhunt.com/iot-unravelled-part-3-security/
|
||||
[p4]: https://www.troyhunt.com/iot-unravelled-part-4-making-it-all-work-for-humans/
|
||||
[p5]: https://www.troyhunt.com/iot-unravelled-part-5-practical-use-case-videos/
|
||||
|
||||
## Framing a wall-mounted tablet
|
||||
|
||||
If you are a bit like me, you probably want to wall mount a tablet someday
|
||||
(or you already have it of course 🥴). Doing that in a nice, elegant and pretty
|
||||
way is often the hard part. Especially if you only have brick walls (like me),
|
||||
which makes it hard to hide cable or recess the tablet.
|
||||
|
||||
Next I came across 2 posts on on the [Home Assistant subreddit][reddit], which,
|
||||
if you haven't done already, should totally join.
|
||||
|
||||
This one popped up, made by ialex87, which uses a
|
||||
[3D printed frame from Thingiverse][stl] to which he glued a wooden frame
|
||||
to make it look like a photo frame.
|
||||
|
||||
<blockquote class="reddit-card" data-card-created="1606506563">
|
||||
<a href="https://www.reddit.com/r/homeassistant/comments/joncw6/nothing_much_but_my_honest_work/">Nothing much, but my honest work!</a> from <a href="http://www.reddit.com/r/homeassistant">r/homeassistant</a>
|
||||
</blockquote>
|
||||
|
||||
Next, Invinciberry shared his version:
|
||||
|
||||
<blockquote class="reddit-card" data-card-created="1606506801">
|
||||
<a href="https://www.reddit.com/r/homeassistant/comments/jw6g9m/now_lets_wall_mount_this_thing/">Now let's wall mount this thing.</a> from <a href="http://www.reddit.com/r/homeassistant">r/homeassistant</a>
|
||||
</blockquote>
|
||||
<script async src="//embed.redditmedia.com/widgets/platform.js" charset="UTF-8"></script>
|
||||
|
||||
Both look very slick! Thanks for sharing!
|
||||
|
||||
[stl]: https://www.thingiverse.com/thing:2853298
|
||||
|
||||
## Arm your alarm by brushing your teeth...
|
||||
|
||||
Automatically arm your alarm, when Home Assistant detects you are
|
||||
using your toothbrush... Why? Because we can! 😎
|
||||
|
||||
<blockquote class="twitter-tweet">
|
||||
<p lang="en" dir="ltr">Have you ever seen a house alarm system controlled by a toothbrush? Here our <a href="https://twitter.com/VanderbiltInd?ref_src=twsrc%5Etfw">@VanderbiltInd</a> alarm is integrated into <a href="https://twitter.com/home_assistant?ref_src=twsrc%5Etfw">@home_assistant</a> . Our toothbrush is ble enabled, it’s state is read by an ESP32 chip and sent into <a href="https://twitter.com/home_assistant?ref_src=twsrc%5Etfw">@home_assistant</a> <a href="https://t.co/T9XGi1Zjmb">pic.twitter.com/T9XGi1Zjmb</a></p>— Ian (@imduffy15) <a href="https://twitter.com/imduffy15/status/1329569523855478784?ref_src=twsrc%5Etfw">November 19, 2020</a>
|
||||
</blockquote>
|
||||
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
|
||||
|
||||
## Home Assistant Conference
|
||||
|
||||
This isn't a highlight yet, but without a doubt, it is definitely is going to
|
||||
become one of the highlights of this year: The Home Assistant Conference.
|
||||
|
||||
Sunday, 13 December, we'll be looking back at last year; but more importantly,
|
||||
lots of great talks are planned by speakers from our community about all
|
||||
different kinds of subjects:
|
||||
|
||||
<a href="/conference"><img src='/images/conference/schedule.png' alt='Home Assistant Conference Schedule' class='no-shadow'></a>
|
||||
|
||||
Above all, some new and exciting stuff is going to be announced as well! So,
|
||||
ensure you don't miss it.
|
||||
|
||||
<a class="btn" href="https://hopin.to/events/home-assistant-conference">Get your $1 ticket</a>
|
||||
|
||||
Or, check the [Home Assistant Conference page](/conference) for other ways on
|
||||
how to watch.
|
||||
|
||||
## Got a tip for the next edition?
|
||||
|
||||
Have you seen (or made) something awesome, interesting, unique, amazing, inspirational, unusual or funny, using Home Assistant?
|
||||
|
||||
[Click here to send us your Community Highlight suggestion](/suggest-community-highlight).
|
||||
|
||||
Also, don't forget to share your creations with us via Social Media:
|
||||
|
||||
- Twitter it! Be sure to mention [@home_assistant][twitter]
|
||||
- Share it on our [Facebook group][facebook-group]
|
||||
- Post it to our [subreddit][reddit]
|
||||
- Tag [@homeasssistant][instagram] on Instagram
|
||||
- Or via chat, drop us a line in the [#lounge at Discord][chat]
|
||||
|
||||
See you next edition!
|
||||
|
||||
[chat]: https://www.home-assistant.io/join-chat
|
||||
[facebook-group]: https://www.facebook.com/groups/HomeAssistant/
|
||||
[instagram]: https://www.instagram.com/homeassistant/
|
||||
[reddit]: https://www.reddit.com/r/homeassistant
|
||||
[twitter]: https://www.twitter.com/home_assistant
|
@ -30,9 +30,17 @@ To be notified when the live stream is online, [visit YouTube](https://www.youtu
|
||||
|
||||
Recordings of the keynote and all tracks and sessions will be made available on YouTube after the conference.
|
||||
|
||||
## Speakers & Schedule
|
||||
## Keynotes & Talks schedule
|
||||
|
||||
The speakers and talks schedule is currently being finalized. Most of the
|
||||
schedule is complete and listed on our Hopin page.
|
||||
The line-up consists of 16 talks in between 2 keynotes: an opening and a closing
|
||||
keynote.
|
||||
|
||||
The opening keynote will mainly focus on what has been done the last year. The
|
||||
closing keynote will be spoiling all kinds of new goodness that is coming.
|
||||
|
||||
<img src='/images/conference/schedule.png' alt='Home Assistant Conference schedule' class='no-shadow'>
|
||||
|
||||
The schedule is also available on our Hopin page. Which has more information
|
||||
available about our speakers.
|
||||
|
||||
[View the Home Assistant Conference schedule on Hopin](https://hopin.to/events/home-assistant-conference#schedule)
|
||||
|
BIN
source/images/blog/2020-12-01-community-highlights/social.png
Normal file
BIN
source/images/blog/2020-12-01-community-highlights/social.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 258 KiB |
BIN
source/images/conference/schedule.png
Normal file
BIN
source/images/conference/schedule.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 89 KiB |
@ -199,8 +199,8 @@ double_tap_action:
|
||||
confirmation:
|
||||
text: Are you sure you want to restart?
|
||||
exemptions:
|
||||
- x9405b8c64ee49bb88c42000e0a9dfa8
|
||||
- 88bcfbdc39155d16c3b2d09cbf8b0367
|
||||
- user: x9405b8c64ee49bb88c42000e0a9dfa8
|
||||
- user: 88bcfbdc39155d16c3b2d09cbf8b0367
|
||||
service: script.restart
|
||||
```
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user