Merge branch 'current' into next

This commit is contained in:
Franck Nijhof 2019-10-03 00:09:25 +02:00
commit 8aa6afa11d
No known key found for this signature in database
GPG Key ID: D62583BA8AB11CA3
13 changed files with 24 additions and 26 deletions

View File

@ -5,7 +5,7 @@ description: "Instructions on how to use the automation editor."
In Home Assistant 0.45 we introduced the first version of our automation editor. If you just created a new configuration with Home Assistant, then you're all set! Go to the UI and enjoy. In Home Assistant 0.45 we introduced the first version of our automation editor. If you just created a new configuration with Home Assistant, then you're all set! Go to the UI and enjoy.
From the UI choose **Configuration** which is located in the sidebar, then click on **Automation** to go to the automation editor. Press the **+** sign in the lower right corner to get started. This example is based on the manual steps described in the [Getting started section](/getting-started/automation/) for a [`random` sensor](/integrations/random/). From the UI choose **Configuration** which is located in the sidebar, then click on **Automation** to go to the automation editor. Press the **+** sign in the lower right corner to get started. This example is based on the manual steps described in the [Getting started section](/getting-started/automation/) for a [`random` sensor](/integrations/random#sensor).
Choose a meaningful name for your automation rules. Choose a meaningful name for your automation rules.

View File

@ -337,7 +337,7 @@ You could test triggering the above automation by sending a POST HTTP request to
### Zone trigger ### Zone trigger
Zone triggers can trigger when an entity is entering or leaving the zone. For zone automation to work, you need to have setup a device tracker platform that supports reporting GPS coordinates. This includes [GPS Logger](/integrations/device_tracker.gpslogger/), the [OwnTracks platform](/integrations/device_tracker.owntracks/) and the [iCloud platform](/integrations/device_tracker.icloud/). Zone triggers can trigger when an entity is entering or leaving the zone. For zone automation to work, you need to have setup a device tracker platform that supports reporting GPS coordinates. This includes [GPS Logger](/integrations/gpslogger/), the [OwnTracks platform](/integrations/owntracks/) and the [iCloud platform](/integrations/icloud/).
```yaml ```yaml
automation: automation:

View File

@ -235,7 +235,7 @@ Time condition windows can span across the midnight threshold. In the example ab
<div class='note tip'> <div class='note tip'>
A better weekday condition could be by using the [Workday Binary Sensor](/integrations/binary_sensor.workday/). A better weekday condition could be by using the [Workday Binary Sensor](/integrations/workday/).
</div> </div>

View File

@ -8,25 +8,25 @@
<a href='/integrations/ifttt/'> <a href='/integrations/ifttt/'>
<img src='/images/supported_brands/ifttt.png' alt="IFTTT" /> <img src='/images/supported_brands/ifttt.png' alt="IFTTT" />
</a> </a>
<a href='/integrations/light.hue/'> <a href='/integrations/hue/'>
<img src='/images/supported_brands/philips_hue.png' alt="Philips Hue" /> <img src='/images/supported_brands/philips_hue.png' alt="Philips Hue" />
</a> </a>
<a href='/integrations/media_player.cast/'> <a href='/integrations/cast/'>
<img src='/images/supported_brands/google_cast.png' alt="Google Cast" /> <img src='/images/supported_brands/google_cast.png' alt="Google Cast" />
</a> </a>
<a href='/integrations/mqtt/'> <a href='/integrations/mqtt/'>
<img src='/images/supported_brands/mqtt.png' alt="MQTT" /> <img src='/images/supported_brands/mqtt.png' alt="MQTT" />
</a> </a>
<a href='/integrations/switch.wemo/'> <a href='/integrations/wemo/'>
<img src='/images/supported_brands/belkin_wemo.png' alt="Belkin WeMo" /> <img src='/images/supported_brands/belkin_wemo.png' alt="Belkin WeMo" />
</a> </a>
<a href='/integrations/notify.pushbullet/'> <a href='/integrations/pushbullet#notifications/'>
<img src='/images/supported_brands/pushbullet.png' alt="Pushbullet" /> <img src='/images/supported_brands/pushbullet.png' alt="Pushbullet" />
</a> </a>
<a href='/integrations/media_player.kodi/'> <a href='/integrations/kodi/'>
<img src='/images/supported_brands/kodi.png' alt="Kodi" /> <img src='/images/supported_brands/kodi.png' alt="Kodi" />
</a> </a>
<a href='/integrations/media_player.plex/'> <a href='/integrations/plex/'>
<img src='/images/supported_brands/plex.png' alt="Plex" /> <img src='/images/supported_brands/plex.png' alt="Plex" />
</a> </a>
<a href='/integrations/tradfri/'> <a href='/integrations/tradfri/'>
@ -35,7 +35,7 @@
<a href='/integrations/vera/'> <a href='/integrations/vera/'>
<img src='/images/supported_brands/vera.png' alt="Vera" /> <img src='/images/supported_brands/vera.png' alt="Vera" />
</a> </a>
<a href='/integrations/device_tracker.luci/'> <a href='/integrations/luci/'>
<img src='/images/supported_brands/openwrt.png' alt="OpenWRT" /> <img src='/images/supported_brands/openwrt.png' alt="OpenWRT" />
</a> </a>
<a href='/integrations/arduino/'> <a href='/integrations/arduino/'>

View File

@ -29,10 +29,12 @@ For example, set the body of the IFTTT webhook to:
{ "action": "call_service", "service": "light.turn_on", "entity_id": "light.living_room" } { "action": "call_service", "service": "light.turn_on", "entity_id": "light.living_room" }
``` ```
You then need to consume that incoming information with the following automation. It need to be added to the `configuration.yaml` file and not `automation.yaml` file. You may want to rename `automation:` to `automation old:` if you are also using the `automation.yaml` file and the online editor: You then need to consume that incoming information with the following automation:
```yaml ```yaml
automation: automation:
- id: this_is_the_automation_id
alias: The optional automation alias
trigger: trigger:
platform: event platform: event
event_type: ifttt_webhook_received event_type: ifttt_webhook_received

View File

@ -32,7 +32,7 @@ Are you not a programmer but still want to contribute to Home Assistant? Check o
[logo]: /images/blog/2016-10-hacktoberfest/hacktoberfest.png [logo]: /images/blog/2016-10-hacktoberfest/hacktoberfest.png
[Hacktoberfest]: https://hacktoberfest.digitalocean.com/ [Hacktoberfest]: https://hacktoberfest.digitalocean.com/
[Hacktoberfest-reg]: https://hacktoberfest.digitalocean.com/sign_up/register [Hacktoberfest-reg]: https://hacktoberfest.digitalocean.com/profile
[issues]: https://github.com/home-assistant/home-assistant/labels/Hacktoberfest [issues]: https://github.com/home-assistant/home-assistant/labels/Hacktoberfest
[issues-doc]: https://github.com/home-assistant/home-assistant.github.io/labels/Hacktoberfest [issues-doc]: https://github.com/home-assistant/home-assistant.github.io/labels/Hacktoberfest
[dev-env]: /developers/development_environment/ [dev-env]: /developers/development_environment/

View File

@ -34,7 +34,7 @@ Our participation for [Hacktoberfest 2016][hackt-2016] was a huge success. Join
[logo]: /images/blog/2016-10-hacktoberfest/hacktoberfest.png [logo]: /images/blog/2016-10-hacktoberfest/hacktoberfest.png
[Hacktoberfest]: https://hacktoberfest.digitalocean.com/ [Hacktoberfest]: https://hacktoberfest.digitalocean.com/
[Hacktoberfest-reg]: https://hacktoberfest.digitalocean.com/sign_up/register [Hacktoberfest-reg]: https://hacktoberfest.digitalocean.com/profile
[issues]: https://github.com/home-assistant/home-assistant/labels/Hacktoberfest [issues]: https://github.com/home-assistant/home-assistant/labels/Hacktoberfest
[issues-doc]: https://github.com/home-assistant/home-assistant.github.io/labels/Hacktoberfest [issues-doc]: https://github.com/home-assistant/home-assistant.github.io/labels/Hacktoberfest
[dev-env]: /developers/development_environment/ [dev-env]: /developers/development_environment/

View File

@ -51,7 +51,7 @@ We're planning a lot of cool stuff around the entity registry. Stay tuned!
## Release 0.63.2 - February 14 ## Release 0.63.2 - February 14
- Fix MercedesMe - add check for unsupported features ([@ReneNulschDE] - [#12342]) ([mercedesme docs]) ([binary_sensor.mercedesme docs]) ([device_tracker.mercedesme docs]) ([sensor.mercedesme docs]) - Fix MercedesMe - add check for unsupported features ([@ReneNulschDE] - [#12342]) ([mercedesme docs]) (binary_sensor.mercedesme docs) ([device_tracker.mercedesme docs]) ([sensor.mercedesme docs])
- Fix WUnderground names ([@OttoWinter] - [#12346]) ([sensor.wunderground docs]) - Fix WUnderground names ([@OttoWinter] - [#12346]) ([sensor.wunderground docs])
- Updated beacontools ([@citruz] - [#12368]) ([sensor.eddystone_temperature docs]) - Updated beacontools ([@citruz] - [#12368]) ([sensor.eddystone_temperature docs])
- Introduce zone_id to identify player+zone ([@sdague] - [#12382]) ([media_player.yamaha docs]) - Introduce zone_id to identify player+zone ([@sdague] - [#12382]) ([media_player.yamaha docs])
@ -226,7 +226,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
- Canary live stream ([@snjoetw] - [#11949]) ([canary docs]) ([camera.canary docs]) (breaking change) - Canary live stream ([@snjoetw] - [#11949]) ([canary docs]) ([camera.canary docs]) (breaking change)
- Replace Gitter with Discord ([@fabaff] - [#12199]) - Replace Gitter with Discord ([@fabaff] - [#12199])
- Upgrade Sphinx to 1.6.7 ([@fabaff] - [#12200]) - Upgrade Sphinx to 1.6.7 ([@fabaff] - [#12200])
- Change attributes in new Mercedes Me component ([@ReneNulschDE] - [#12147]) ([mercedesme docs]) ([binary_sensor.mercedesme docs]) ([device_tracker.mercedesme docs]) ([sensor.mercedesme docs]) - Change attributes in new Mercedes Me component ([@ReneNulschDE] - [#12147]) ([mercedesme docs]) (binary_sensor.mercedesme docs) ([device_tracker.mercedesme docs]) ([sensor.mercedesme docs])
- Binary Sensor Template: Add icon_template and entity_picture_template support ([@hawk259] - [#12158]) ([binary_sensor.template docs]) - Binary Sensor Template: Add icon_template and entity_picture_template support ([@hawk259] - [#12158]) ([binary_sensor.template docs])
- Bump pyeconet version to fix JSONDecodeError ([@w1ll1am23] - [#12204]) ([climate.econet docs]) - Bump pyeconet version to fix JSONDecodeError ([@w1ll1am23] - [#12204]) ([climate.econet docs])
- Add support for Alexa.StepSpeaker ([@lucasweb78] - [#12183]) ([alexa docs]) - Add support for Alexa.StepSpeaker ([@lucasweb78] - [#12183]) ([alexa docs])
@ -503,7 +503,6 @@ Experiencing issues introduced by this release? Please report them in our [issue
[@zabuldon]: https://github.com/zabuldon [@zabuldon]: https://github.com/zabuldon
[alexa docs]: /integrations/alexa/ [alexa docs]: /integrations/alexa/
[binary_sensor.deconz docs]: /integrations/deconz#binary-sensor [binary_sensor.deconz docs]: /integrations/deconz#binary-sensor
[binary_sensor.mercedesme docs]: /integrations/binary_sensor.mercedesme/
[binary_sensor.mqtt docs]: /integrations/binary_sensor.mqtt/ [binary_sensor.mqtt docs]: /integrations/binary_sensor.mqtt/
[binary_sensor.template docs]: /integrations/binary_sensor.template/ [binary_sensor.template docs]: /integrations/binary_sensor.template/
[binary_sensor.threshold docs]: /integrations/threshold [binary_sensor.threshold docs]: /integrations/threshold
@ -654,7 +653,6 @@ Experiencing issues introduced by this release? Please report them in our [issue
[@amelchio]: https://github.com/amelchio [@amelchio]: https://github.com/amelchio
[@citruz]: https://github.com/citruz [@citruz]: https://github.com/citruz
[@sdague]: https://github.com/sdague [@sdague]: https://github.com/sdague
[binary_sensor.mercedesme docs]: /integrations/binary_sensor.mercedesme/
[device_tracker.mercedesme docs]: /integrations/device_tracker.mercedesme/ [device_tracker.mercedesme docs]: /integrations/device_tracker.mercedesme/
[light.limitlessled docs]: /integrations/limitlessled [light.limitlessled docs]: /integrations/limitlessled
[media_player.yamaha docs]: /integrations/yamaha [media_player.yamaha docs]: /integrations/yamaha

View File

@ -56,7 +56,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
- Updates default Pilight port number ([@frenck] - [#13419]) ([pilight docs]) (breaking change) - Updates default Pilight port number ([@frenck] - [#13419]) ([pilight docs]) (breaking change)
- Update to new "b2vapi" of BMW ConnectedDrive ([@ChristianKuehnel] - [#13305]) ([bmw_connected_drive docs]) ([binary_sensor.bmw_connected_drive docs]) ([lock.bmw_connected_drive docs]) ([sensor.bmw_connected_drive docs]) (breaking change) - Update to new "b2vapi" of BMW ConnectedDrive ([@ChristianKuehnel] - [#13305]) ([bmw_connected_drive docs]) ([binary_sensor.bmw_connected_drive docs]) ([lock.bmw_connected_drive docs]) ([sensor.bmw_connected_drive docs]) (breaking change)
- Remove MercedesME component ([@ReneNulschDE] - [#13538]) ([device_tracker docs]) ([mercedesme docs]) ([binary_sensor.mercedesme docs]) ([sensor.mercedesme docs]) (breaking change) - Remove MercedesME component ([@ReneNulschDE] - [#13538]) ([device_tracker docs]) ([mercedesme docs]) (binary_sensor.mercedesme docs) ([sensor.mercedesme docs]) (breaking change)
- Channel up and down for webostv ([@stephanerosi] - [#13624]) ([media_player.webostv docs]) (breaking change) - Channel up and down for webostv ([@stephanerosi] - [#13624]) ([media_player.webostv docs]) (breaking change)
- Add media type separation for video/movie ([@tadly] - [#13612]) (breaking change) - Add media type separation for video/movie ([@tadly] - [#13612]) (breaking change)
- Added ENTITY_ID_FORMAT import and set entity_id in __init__ ([@timmo001] - [#13642]) ([switch.broadlink docs]) (breaking change) - Added ENTITY_ID_FORMAT import and set entity_id in __init__ ([@timmo001] - [#13642]) ([switch.broadlink docs]) (breaking change)
@ -108,7 +108,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
- Added HassOpenCover and HassCloseCover intents ([@tschmidty69] - [#13372]) ([conversation docs]) ([cover docs]) - Added HassOpenCover and HassCloseCover intents ([@tschmidty69] - [#13372]) ([conversation docs]) ([cover docs])
- rfxtrx lib 0.22.0 ([@Danielhiversen] - [#13576]) ([rfxtrx docs]) - rfxtrx lib 0.22.0 ([@Danielhiversen] - [#13576]) ([rfxtrx docs])
- xiaomi lib upgrade ([@Danielhiversen] - [#13577]) ([xiaomi_aqara docs]) - xiaomi lib upgrade ([@Danielhiversen] - [#13577]) ([xiaomi_aqara docs])
- Remove MercedesME component ([@ReneNulschDE] - [#13538]) ([device_tracker docs]) ([mercedesme docs]) ([binary_sensor.mercedesme docs]) ([sensor.mercedesme docs]) (breaking change) - Remove MercedesME component ([@ReneNulschDE] - [#13538]) ([device_tracker docs]) ([mercedesme docs]) (binary_sensor.mercedesme docs) ([sensor.mercedesme docs]) (breaking change)
- Added Waze travel time sensor ([@Myrddyn1] - [#12387]) ([sensor.waze_travel_time docs]) (new-platform) - Added Waze travel time sensor ([@Myrddyn1] - [#12387]) ([sensor.waze_travel_time docs]) (new-platform)
- Added switch component to Amcrest IP Camera. ([@adpriebe] - [#12992]) ([amcrest docs]) ([switch.amcrest docs]) (new-platform) - Added switch component to Amcrest IP Camera. ([@adpriebe] - [#12992]) ([amcrest docs]) ([switch.amcrest docs]) (new-platform)
- Upgrade pyhydroquebec 2.2.1 ([@titilambert] - [#13586]) ([sensor.hydroquebec docs]) - Upgrade pyhydroquebec 2.2.1 ([@titilambert] - [#13586]) ([sensor.hydroquebec docs])
@ -333,7 +333,6 @@ Experiencing issues introduced by this release? Please report them in our [issue
[amcrest docs]: /integrations/amcrest/ [amcrest docs]: /integrations/amcrest/
[api docs]: /integrations/api/ [api docs]: /integrations/api/
[binary_sensor.bmw_connected_drive docs]: /integrations/bmw_connected_drive [binary_sensor.bmw_connected_drive docs]: /integrations/bmw_connected_drive
[binary_sensor.mercedesme docs]: /integrations/binary_sensor.mercedesme/
[binary_sensor.workday docs]: /integrations/workday [binary_sensor.workday docs]: /integrations/workday
[bmw_connected_drive docs]: /integrations/bmw_connected_drive/ [bmw_connected_drive docs]: /integrations/bmw_connected_drive/
[camera.mqtt docs]: /integrations/camera.mqtt/ [camera.mqtt docs]: /integrations/camera.mqtt/

View File

@ -30,7 +30,7 @@ Have a good weekend everyone!
- Add Iperf3 client sensor ([@tchellomello] - [#14213]) ([sensor.iperf3 docs]) (new-platform) - Add Iperf3 client sensor ([@tchellomello] - [#14213]) ([sensor.iperf3 docs]) (new-platform)
- Add homematicip cloud climate platform ([@mxworm] - [#14388]) ([homematicip_cloud docs]) ([climate.homematicip_cloud docs]) (new-platform) - Add homematicip cloud climate platform ([@mxworm] - [#14388]) ([homematicip_cloud docs]) ([climate.homematicip_cloud docs]) (new-platform)
- Add Hydrawise component ([@ptcryan] - [#14055]) ([hydrawise docs]) ([binary_sensor.hydrawise docs]) ([sensor.hydrawise docs]) ([switch.hydrawise docs]) (new-platform) - Add Hydrawise component ([@ptcryan] - [#14055]) ([hydrawise docs]) ([binary_sensor.hydrawise docs]) ([sensor.hydrawise docs]) ([switch.hydrawise docs]) (new-platform)
- Adding ryobi garage door opener ([@guillaume1410] - [#14618]) ([cover.ryobi_gdo docs]) (new-platform) - Adding ryobi garage door opener ([@guillaume1410] - [#14618]) (cover.ryobi_gdo docs) (new-platform)
- Add sensors and services to RainMachine ([@bachya] - [#14326]) ([rainmachine docs]) ([binary_sensor.rainmachine docs]) ([sensor.rainmachine docs]) ([switch.rainmachine docs]) (new-platform) - Add sensors and services to RainMachine ([@bachya] - [#14326]) ([rainmachine docs]) ([binary_sensor.rainmachine docs]) ([sensor.rainmachine docs]) ([switch.rainmachine docs]) (new-platform)
- Add Flock notification platform ([@fabaff] - [#14533]) ([notify docs]) (new-platform) - Add Flock notification platform ([@fabaff] - [#14533]) ([notify docs]) (new-platform)
@ -107,7 +107,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
- Add homematicip cloud climate platform ([@mxworm] - [#14388]) ([homematicip_cloud docs]) ([climate.homematicip_cloud docs]) (new-platform) - Add homematicip cloud climate platform ([@mxworm] - [#14388]) ([homematicip_cloud docs]) ([climate.homematicip_cloud docs]) (new-platform)
- Upgrade speedtest-cli to 2.0.2 ([@fabaff] - [#14633]) ([sensor.speedtest docs]) - Upgrade speedtest-cli to 2.0.2 ([@fabaff] - [#14633]) ([sensor.speedtest docs])
- Add Hydrawise component ([@ptcryan] - [#14055]) ([hydrawise docs]) ([binary_sensor.hydrawise docs]) ([sensor.hydrawise docs]) ([switch.hydrawise docs]) (new-platform) - Add Hydrawise component ([@ptcryan] - [#14055]) ([hydrawise docs]) ([binary_sensor.hydrawise docs]) ([sensor.hydrawise docs]) ([switch.hydrawise docs]) (new-platform)
- Adding ryobi garage door opener ([@guillaume1410] - [#14618]) ([cover.ryobi_gdo docs]) (new-platform) - Adding ryobi garage door opener ([@guillaume1410] - [#14618]) (cover.ryobi_gdo docs) (new-platform)
- Add electrical measurement sensor to ZHA ([@dmulcahey] - [#14561]) ([zha docs]) ([sensor.zha docs]) - Add electrical measurement sensor to ZHA ([@dmulcahey] - [#14561]) ([zha docs]) ([sensor.zha docs])
- Upgrade luftdaten to 0.2.0 ([@fabaff] - [#14620]) ([sensor.luftdaten docs]) - Upgrade luftdaten to 0.2.0 ([@fabaff] - [#14620]) ([sensor.luftdaten docs])
- Upgrade python-nest to 4.0.0 ([@awarecan] - [#14638]) ([nest docs]) - Upgrade python-nest to 4.0.0 ([@awarecan] - [#14638]) ([nest docs])
@ -345,7 +345,6 @@ Experiencing issues introduced by this release? Please report them in our [issue
[config docs]: /integrations/config/ [config docs]: /integrations/config/
[counter docs]: /integrations/counter/ [counter docs]: /integrations/counter/
[cover.myq docs]: /integrations/myq [cover.myq docs]: /integrations/myq
[cover.ryobi_gdo docs]: /integrations/cover.ryobi_gdo/
[device_tracker docs]: /integrations/device_tracker/ [device_tracker docs]: /integrations/device_tracker/
[eufy docs]: /integrations/eufy/ [eufy docs]: /integrations/eufy/
[frontend docs]: /integrations/frontend/ [frontend docs]: /integrations/frontend/

View File

@ -27,7 +27,7 @@ If you submit five (5) Pull Requests during October, you will have earned yourse
**We want to focus on new contributors and people who want to get started on working on an Open Source project.** **We want to focus on new contributors and people who want to get started on working on an Open Source project.**
Are you ready? [Sign up for Hacktoberfest](https://hacktoberfest.digitalocean.com/sign_up/register)! Are you ready? [Sign up for Hacktoberfest](https://hacktoberfest.digitalocean.com/profile)!
<!--more--> <!--more-->

View File

@ -238,7 +238,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
- Enhance SmartThings component subscription ([@andrewsayre] - [#21124]) ([smartthings docs]) (breaking change) (new-feature) - Enhance SmartThings component subscription ([@andrewsayre] - [#21124]) ([smartthings docs]) (breaking change) (new-feature)
- Add more ads plc types ([@philipperequile] - [#19801]) ([ads docs]) - Add more ads plc types ([@philipperequile] - [#19801]) ([ads docs])
- Add note to issue template regarding iOS issues ([@robbiet480] - [#21342]) - Add note to issue template regarding iOS issues ([@robbiet480] - [#21342])
- Allow google home component device tracker to be optional ([@dshokouhi] - [#21335]) ([googlehome docs]) - Allow google home component device tracker to be optional ([@dshokouhi] - [#21335]) (googlehome docs)
- Add LCN cover platform ([@alengwenus] - [#20288]) ([lcn docs]) ([cover.lcn docs]) (new-platform) - Add LCN cover platform ([@alengwenus] - [#20288]) ([lcn docs]) ([cover.lcn docs]) (new-platform)
- Add location to Norway airquality ([@Danielhiversen] - [#21347]) ([air_quality docs]) ([weather.met docs]) - Add location to Norway airquality ([@Danielhiversen] - [#21347]) ([air_quality docs]) ([weather.met docs])
- Updated pyvlx from 0.2.8 to 0.2.9. This version has slightly improved logging ([@Julius2342] - [#21349]) ([velux docs]) - Updated pyvlx from 0.2.8 to 0.2.9. This version has slightly improved logging ([@Julius2342] - [#21349]) ([velux docs])
@ -638,7 +638,6 @@ Experiencing issues introduced by this release? Please report them in our [issue
[esphome docs]: /integrations/esphome/ [esphome docs]: /integrations/esphome/
[frontend docs]: /integrations/frontend/ [frontend docs]: /integrations/frontend/
[google_assistant docs]: /integrations/google_assistant/ [google_assistant docs]: /integrations/google_assistant/
[googlehome docs]: /integrations/googlehome/
[history docs]: /integrations/history/ [history docs]: /integrations/history/
[homekit_controller docs]: /integrations/homekit_controller/ [homekit_controller docs]: /integrations/homekit_controller/
[homematic docs]: /integrations/homematic/ [homematic docs]: /integrations/homematic/

View File

@ -31,3 +31,4 @@ To try it yourself, check out [the demo](https://demo.home-assistant.io).
* [Awesome HA](https://www.awesome-ha.com/#lovelace-ui) * [Awesome HA](https://www.awesome-ha.com/#lovelace-ui)
* [Community Custom Cards](https://github.com/custom-cards) * [Community Custom Cards](https://github.com/custom-cards)
* [Material Design Icons](https://materialdesignicons.com/tag/community)