mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-20 15:56:51 +00:00
Merge branch 'current' into next
This commit is contained in:
commit
b106fe0bf1
@ -3,7 +3,7 @@ GEM
|
||||
specs:
|
||||
addressable (2.7.0)
|
||||
public_suffix (>= 2.0.2, < 5.0)
|
||||
chunky_png (1.3.12)
|
||||
chunky_png (1.3.14)
|
||||
colorator (1.1.0)
|
||||
commonmarker (0.21.0)
|
||||
ruby-enum (~> 0.5)
|
||||
|
@ -179,7 +179,7 @@ You can setup the binary motion sensor with the following in your `configuration
|
||||
binary_sensor:
|
||||
- platform: rest
|
||||
name: Kitchen Motion
|
||||
sensor_class: motion
|
||||
device_class: motion
|
||||
resource: http://IP_ADDRESS:PORT/sensors.json?sense=motion_active
|
||||
value_template: '{{ value_json.motion_active.data[0][1][0] | round(0) }}'
|
||||
```
|
||||
|
@ -93,7 +93,7 @@ sensor:
|
||||
password: YOUR_PASSWORD
|
||||
search: FROM <sender@email.com>, SUBJECT <subject here>
|
||||
# Or use X-GM-RAW search-term like this, to find unread emails from the last 7 days in your inbox
|
||||
# search: "X-GM-RAW 'in: inbox newer_than:7d is:unread'"
|
||||
# search: 'X-GM-RAW "in: inbox newer_than:7d is:unread"'
|
||||
|
||||
# Example configuration.yaml entry for Office 365
|
||||
sensor:
|
||||
|
@ -104,6 +104,6 @@ docker exec -it CONTAINER_NAME_OR_ID python -c 'import roomba.entry_points; room
|
||||
|
||||
<div class='note'>
|
||||
|
||||
The command to retrieve the credentials does not need any additional software to be installed because it uses the built-in [roombapy](https://github.com/pschmitt/roombapy) package and [password](https://github.com/pschmitt/roombapy/blob/1.6.1/roomba/entry_points.py#L20) funciton deployed with Home Assistant.
|
||||
The command to retrieve the credentials does not need any additional software to be installed because it uses the built-in [roombapy](https://github.com/pschmitt/roombapy) package and [password](https://github.com/pschmitt/roombapy/blob/1.6.1/roomba/entry_points.py#L20) function deployed with Home Assistant.
|
||||
|
||||
</div>
|
||||
|
@ -108,6 +108,10 @@ Common for webOS 3.0 and higher would be to use WakeOnLan feature. To use this f
|
||||
|
||||
On newer models (2017+), WakeOnLan may need to be enabled in the TV settings by going to Settings > General > Mobile TV On > Turn On Via WiFi [instructions](https://support.quanticapps.com/hc/en-us/articles/115005985729-How-to-turn-on-my-LG-Smart-TV-using-the-App-WebOS-).
|
||||
|
||||
<div class='note'>
|
||||
This usually only works if the TV is connected to the same network. Routing the WakeOnLan packet to a different subnet requires special configuration on your router or may not be possible.
|
||||
</div>
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
wake_on_lan: # enables `wake_on_lan` domain
|
||||
|
@ -21,7 +21,7 @@ But there is more you can do! You can not only host images for customization the
|
||||
|
||||
In the past the buzz word "Smart mirror" was used a couple of times in our [chatroom](https://discord.gg/c5DvZ4e) and even made it into the [issue tracker](https://github.com/home-assistant/home-assistant/issues/1392). The existing solutions ([Smart mirror](https://docs.smart-mirror.io/), [MagicMirror](https://michaelteeuw.nl/tagged/magicmirror), and [HomeMirror](https://github.com/HannahMitt/HomeMirror)) seems to be overkill if you already have Home Assistant running somewhere in your house or apartment. Why not simple display a web page served by Home Assistant on the tablet? No app and no Raspberry Pi running in the background.
|
||||
|
||||
There are plenty of ways to achieve this...[RESTful API](/developers/rest_api/), [Python API](/developers/python_api/), or one of the [history components](/integrations/#history). If it is to be a web page I'm using the [MQTT Eventstream component](/integrations/mqtt_eventstream/) and [Eclipse Paho JavaScript Client](https://www.eclipse.org/paho/clients/js/).
|
||||
There are plenty of ways to achieve this...[RESTful API](/developers/rest_api/), ~~Python API~~, or one of the [history components](/integrations/#history). If it is to be a web page I'm using the [MQTT Eventstream component](/integrations/mqtt_eventstream/) and [Eclipse Paho JavaScript Client](https://www.eclipse.org/paho/clients/js/).
|
||||
|
||||
The [HBMQTT](https://pypi.org/pypi/hbmqtt) broker provides websockets support for MQTT and mqttws31.js included in web page gives you access to the MQTT messages. It's a matter of minutes. OK, it took a little longer because I'm not a Javascript guy to create the software part that will show details about your environment. The source is available at [https://github.com/fabaff/home-assistant-display](https://github.com/fabaff/home-assistant-display) and the screenshot above shows the result. I guess that every person who is familiar with Javascript would be able to reduce the amount of code and to make it more flexible. Well, it's only a prototype and showcase to include an image in this blog post.
|
||||
|
||||
|
@ -214,7 +214,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
|
||||
[homematic]: /integrations/homematic/
|
||||
[nest-cam]: /integrations/nest#camera
|
||||
[nest]: /integrations/nest/
|
||||
[nginx]: /ecosystem/nginx/
|
||||
[nginx]: /docs/ecosystem/nginx
|
||||
[nut]: /integrations/nut
|
||||
[philips]: /integrations/philips_js
|
||||
[remote]: /integrations/remote/
|
||||
|
@ -71,7 +71,6 @@
|
||||
/developers/multiple_instances https://developers.home-assistant.io
|
||||
/developers/platform_example_light https://github.com/home-assistant/example-custom-config/tree/master/custom_components/example_light
|
||||
/developers/platform_example_sensor https://github.com/home-assistant/example-custom-config/tree/master/custom_components/example_sensor
|
||||
/developers/python_api https://developers.home-assistant.io/docs/external_api_rest_python/
|
||||
/developers/releasing https://developers.home-assistant.io/docs/releasing/
|
||||
/developers/rest_api https://developers.home-assistant.io/docs/api/rest/
|
||||
/developers/server_sent_events https://developers.home-assistant.io/docs/external_api_server_sent_events/
|
||||
|
@ -1,9 +1,9 @@
|
||||
---
|
||||
title: "Installing Home Assistant"
|
||||
description: "Instructions on how to install Home Assistant."
|
||||
title: "Installing Home Assistant OS"
|
||||
description: "Instructions on how to install Home Assistant OS."
|
||||
---
|
||||
|
||||
The following will take you through the steps required to install Home Assistant.
|
||||
The following will take you through the steps required to install Home Assistant OS.
|
||||
|
||||
1. Download the appropriate install option:
|
||||
|
||||
@ -25,7 +25,7 @@ The following will take you through the steps required to install Home Assistant
|
||||
|
||||
- [Raspberry Pi][pi1], [Raspberry Pi Zero-W][pi0-w], [Raspberry Pi 2][pi2]
|
||||
|
||||
2. Install Home Assistant:
|
||||
2. Install Home Assistant OS:
|
||||
|
||||
- **For the device images:** Flash the downloaded image to an SD card using [balenaEtcher][balenaEtcher]. If using a Pi, we recommend at least a 32 GB SD card to avoid running out of space.
|
||||
- **For the virtual appliance images:** Load the appliance image into your virtual machine software. (Note: You are free to assign as much resources as you wish to the VM, please assign enough based on your add-on needs)
|
||||
@ -80,7 +80,7 @@ Best practice for updating a Home Assistant installation:
|
||||
4. If the check passes, you can safely update. If not, update your configuration accordingly.
|
||||
5. Select _Dashboard_ from the _Supervisor_ menu, and then select _Update_.
|
||||
|
||||
## Run a specific version on Home Assistant
|
||||
## Run a specific version of Home Assistant
|
||||
|
||||
For this you would need to install the [Terminal & SSH add-on][ssh] or use the console
|
||||
that is available on your device by connecting a keyboard and screen.
|
||||
@ -93,7 +93,7 @@ Use the web-based terminal or SSH to your Home Assistant system, or connect to t
|
||||
ha core update --version=0.XX.X
|
||||
```
|
||||
|
||||
## Run the beta version on Home Assistant
|
||||
## Run the beta version of Home Assistant
|
||||
|
||||
If you would like to test next release before anyone else, you can install the beta version released every three weeks:
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user