mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-08 01:46:50 +00:00
Fix broken links
This commit is contained in:
parent
5e6544bd60
commit
bdb9a933cf
14
source/_components/homeassistant.markdown
Normal file
14
source/_components/homeassistant.markdown
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Core integration"
|
||||
description: "Description of the homeassistant integration."
|
||||
date: 2019-04-03 02:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: home-assistant.png
|
||||
ha_release: 0.0
|
||||
---
|
||||
|
||||
The Home Assistant integration provides generic implementations like the generic `homeassistant.turn_on`.
|
@ -27,3 +27,13 @@ websocket_api:
|
||||
```
|
||||
|
||||
For details to use the WebSocket API, please refer to the [WebSocket API documentation](/developers/websocket_api/) .
|
||||
|
||||
## {% linkable_title Track current connections %}
|
||||
|
||||
The websocket API provides a sensor that will keep track of the number of current connected clients. You can add it by adding the following to your configuration:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
sensor:
|
||||
platform: websocket_api
|
||||
```
|
||||
|
@ -67,9 +67,9 @@ Experiencing issues introduced by this release? Please report them in our [issue
|
||||
- __Z-Wave__ - The usb_path in configuration.yaml now overrides config entry usb_path. This is potentially a breaking change if people have a stale usb_path setting in configuration.yaml that's no longer accurate. This should help reduce the number of people that need to manually edit the storage/core.config_entries file if their usb_path changes. ([@cgarwood] - [#22038]) ([zwave docs])
|
||||
|
||||
- __iOS__ - Improves the text description of ATTR_BATTERY_STATE_UNPLUGGED from Unplugged to Not Charging as many new iOS devices now use Wireless charging and there is no concept of "Plugging In". This is potentially a breaking change if you have automations making use of "unplugged". ([@FattusMannus] - [#22152]) ([ios docs])
|
||||
- __Iliad Italy__ - __Removed__ - This was removed because it uses webscraping and Iliad is conducting a/b testing on their web pages, making it not stable for use in production. ([@eliseomartelli] - [#22175]) ([iliad_italy docs])
|
||||
- __Iliad Italy__ - __Removed__ - This was removed because it uses webscraping and Iliad is conducting a/b testing on their web pages, making it not stable for use in production. ([@eliseomartelli] - [#22175])
|
||||
- __Netgear lte__ - The previous three components (network, notify, and sensor) now fall under one netgear_lte component. Check the [updated documentation](https://www.home-assistant.io/components/netgear_lte/) for more information. ([@amelchio] - [#22105]) ([netgear_lte docs])
|
||||
- __API streams sensor__ - __Removed__ - This sensor component was designed to count connected front-end clients. However, it depended on the implementation details of other components, and has therefore been broken since 0.80, so it has been removed. The replacement sensor is now the [websocket_api sensor](https://www.home-assistant.io/components/sensor.websocket_api/), which does basically the same thing apart from the rename. ([@Swamp-Ig] - [#22200]) ([api_streams docs]) ([websocket_api docs])
|
||||
- __API streams sensor__ - __Removed__ - This sensor component was designed to count connected front-end clients. However, it depended on the implementation details of other components, and has therefore been broken since 0.80, so it has been removed. The replacement sensor is now the [websocket_api sensor](https://www.home-assistant.io/components/websocket_api/), which does basically the same thing apart from the rename. ([@Swamp-Ig] - [#22200]) ([websocket_api docs])
|
||||
- __Public Transit (GTFS)__
|
||||
* The state for this sensor component was a countdown in minutes. If the next departure was in a few hours, this number became quite large and a tad harder to rapidly calculate mentally (463 minutes anyone?). The sensor's state output has been changed from minutes to an ISO 8601 UTC timestamp, which allows the UI to interpret the state as needed. ([@renemarc] - [#21053]) ([gtfs docs])
|
||||
* Sensor updates were running many database queries to populate attributes, on top of the bus schedule queries themselves. This is doubled with two sensors. That led to a lot of slowdowns for everything else when using an SD card! Considering that some data never changes (agency, routes...) and that others like departure times are good until invalidated, now we fetch such metadata at first and then only when relevant changes do occur. GTFS sensor attributes are now named using the standard snake_case format. ([@renemarc] - [#20966]) ([gtfs docs])
|
||||
@ -152,7 +152,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
|
||||
- Add some tests for Koogeek LS1 ([@Jc2k] - [#22141]) ([homekit_controller docs])
|
||||
- Move platforms patch ([@Swamp-Ig] - [#22168]) ([mold_indicator docs]) ([moon docs])
|
||||
- restore entity for switchbot ([@Danielhiversen] - [#22087]) ([switchbot docs])
|
||||
- removed iliad ([@eliseomartelli] - [#22175]) ([iliad_italy docs]) (breaking change)
|
||||
- removed iliad ([@eliseomartelli] - [#22175]) (breaking change)
|
||||
- Upgrade youtube_dl to 2019.03.18 ([@fabaff] - [#22181]) ([media_extractor docs])
|
||||
- Upgrade Sphinx to 1.8.5 ([@fabaff] - [#22180])
|
||||
- Better handling of HomeKit accessory-information service ([@Jc2k] - [#22171]) ([homekit_controller docs])
|
||||
@ -176,7 +176,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
|
||||
- Bump androidtv to 0.0.13 ([@JeffLIrion] - [#22279]) ([androidtv docs])
|
||||
- Improved exception handling and logging ([@JeffLIrion] - [#22268]) ([androidtv docs])
|
||||
- Consolidate the netgear_lte configuration ([@amelchio] - [#22105]) ([netgear_lte docs]) (breaking change)
|
||||
- Fixing the api_streams sensor ([@Swamp-Ig] - [#22200]) ([api_streams docs]) ([websocket_api docs]) (breaking change)
|
||||
- Fixing the api_streams sensor ([@Swamp-Ig] - [#22200]) ([websocket_api docs]) (breaking change)
|
||||
- Fix progress for Plex media_players ([@jjlawren] - [#22224]) ([plex docs])
|
||||
- Add sort by config and tests for Reddit integration ([@ljmerza] - [#22081]) ([reddit docs])
|
||||
- Fix Prometheus casting issues ([@robbiet480] - [#22282]) ([prometheus docs])
|
||||
|
Loading…
x
Reference in New Issue
Block a user