mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 17:27:19 +00:00
Remove deprecated linksys_ap integration (ADR-0004) (#10434)
This commit is contained in:
parent
ae8be44658
commit
e1143553d1
@ -1,73 +0,0 @@
|
|||||||
---
|
|
||||||
title: "Linksys Access Points"
|
|
||||||
description: "Instructions on how to integrate Linksys Access Points into Home Assistant."
|
|
||||||
ha_category:
|
|
||||||
- Presence Detection
|
|
||||||
logo: linksys.png
|
|
||||||
ha_release: 0.37
|
|
||||||
redirect_from:
|
|
||||||
- /components/device_tracker.linksys_ap/
|
|
||||||
---
|
|
||||||
|
|
||||||
<div class="note warning">
|
|
||||||
|
|
||||||
This integration is deprecated and will be removed in Home Assistant 0.100.0.
|
|
||||||
|
|
||||||
For more information see [Architecture Decision Record: 0004](https://github.com/home-assistant/architecture/blob/master/adr/0004-webscraping.md).
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
The `linksys_ap` platform offers presence detection by looking at connected devices to a Linksys based access point.
|
|
||||||
|
|
||||||
It was tested with a LAPAC1750 AC1750 Dual Band Access Point.
|
|
||||||
|
|
||||||
## Configuration
|
|
||||||
|
|
||||||
To use a Linksys Access Point in your installation, add the following to your `configuration.yaml` file:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# Example configuration.yaml entry
|
|
||||||
device_tracker:
|
|
||||||
- platform: linksys_ap
|
|
||||||
host: 192.168.1.1
|
|
||||||
username: YOUR_USERNAME
|
|
||||||
password: YOUR_PASSWORD
|
|
||||||
```
|
|
||||||
|
|
||||||
{% configuration %}
|
|
||||||
host:
|
|
||||||
description: The hostname or IP address of your access point, e.g., `192.168.1.1`.
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
username:
|
|
||||||
description: The username of an user with administrative privileges (read-only is sufficient).
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
password:
|
|
||||||
description: The password for your given admin account.
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
verify_ssl:
|
|
||||||
description: Verify SSL certificate for HTTPS request.
|
|
||||||
required: false
|
|
||||||
default: true
|
|
||||||
type: boolean
|
|
||||||
{% endconfiguration %}
|
|
||||||
|
|
||||||
## Example
|
|
||||||
|
|
||||||
Example for all configuration options:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# Example configuration.yaml entry
|
|
||||||
device_tracker:
|
|
||||||
- platform: linksys_ap
|
|
||||||
host: 192.168.1.1
|
|
||||||
username: YOUR_USERNAME
|
|
||||||
password: YOUR_PASSWORD
|
|
||||||
verify_ssl: true
|
|
||||||
scan_interval: 6
|
|
||||||
consider_home: 12
|
|
||||||
```
|
|
||||||
|
|
||||||
See the [device tracker integration page](/components/device_tracker/) for instructions how to configure the people to be tracked.
|
|
@ -58,7 +58,7 @@ Thanks to [@konikvranik] the [HDMI CEC][cec] integration got a huge update with
|
|||||||
- Device tracker: [Sky hub][sky] support ([@alexmogavero])
|
- Device tracker: [Sky hub][sky] support ([@alexmogavero])
|
||||||
- Support for [Lutron][lutron] RadioRA 2 ([@thecynic])
|
- Support for [Lutron][lutron] RadioRA 2 ([@thecynic])
|
||||||
- TTS: Amazon [Polly TTS][polly] platform ([@robbiet480])
|
- TTS: Amazon [Polly TTS][polly] platform ([@robbiet480])
|
||||||
- Device tracker: Support for [Linksys][linksys] Access Points ([@lukas-hetzenecker])
|
- Device tracker: Support for Linksys Access Points ([@lukas-hetzenecker])
|
||||||
- Notify: Make calls with [Twilio][twilio] ([@fakezeta])
|
- Notify: Make calls with [Twilio][twilio] ([@fakezeta])
|
||||||
|
|
||||||
#### Improvements
|
#### Improvements
|
||||||
@ -239,7 +239,6 @@ Experiencing issues introduced by this release? Please report them in our [issue
|
|||||||
[skybeacon]: /components/sensor.skybeacon/
|
[skybeacon]: /components/sensor.skybeacon/
|
||||||
[lutron]: /components/lutron/
|
[lutron]: /components/lutron/
|
||||||
[polly]: /components/tts.amazon_polly/
|
[polly]: /components/tts.amazon_polly/
|
||||||
[linksys]: /components/device_tracker.linksys_ap/
|
|
||||||
[emul-hue]: /components/emulated_hue/
|
[emul-hue]: /components/emulated_hue/
|
||||||
[netatmo]: /components/netatmo/
|
[netatmo]: /components/netatmo/
|
||||||
[face]: /components/microsoft_face/
|
[face]: /components/microsoft_face/
|
||||||
|
@ -115,7 +115,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
|
|||||||
- LIFX: avoid out-of-bounds hue aborting the colorloop effect ([@amelchio] - [#7495])
|
- LIFX: avoid out-of-bounds hue aborting the colorloop effect ([@amelchio] - [#7495])
|
||||||
- Upgrade async_timeout to 1.2.1 ([@fabaff] - [#7490])
|
- Upgrade async_timeout to 1.2.1 ([@fabaff] - [#7490])
|
||||||
- Prevent printing of packets. ([@aequitas] - [#7492]) ([rflink docs])
|
- Prevent printing of packets. ([@aequitas] - [#7492]) ([rflink docs])
|
||||||
- Upgrade beautifulsoup4 to 4.6.0 ([@fabaff] - [#7491]) ([device_tracker.linksys_ap docs]) ([sensor.scrape docs])
|
- Upgrade beautifulsoup4 to 4.6.0 ([@fabaff] - [#7491]) ([sensor.scrape docs])
|
||||||
- Switch onkyo to pypi ([@andrey-git] - [#7497]) ([media_player.onkyo docs])
|
- Switch onkyo to pypi ([@andrey-git] - [#7497]) ([media_player.onkyo docs])
|
||||||
- Fixed potential AttributeError when checking for deleted sources ([@scarface-4711] - [#7502]) ([media_player.denonavr docs])
|
- Fixed potential AttributeError when checking for deleted sources ([@scarface-4711] - [#7502]) ([media_player.denonavr docs])
|
||||||
- Refactor sun component for correctness ([@armills] - [#7295])
|
- Refactor sun component for correctness ([@armills] - [#7295])
|
||||||
@ -353,7 +353,6 @@ Experiencing issues introduced by this release? Please report them in our [issue
|
|||||||
[cover.lutron_caseta docs]: /components/cover.lutron_caseta/
|
[cover.lutron_caseta docs]: /components/cover.lutron_caseta/
|
||||||
[datadog docs]: /components/datadog/
|
[datadog docs]: /components/datadog/
|
||||||
[device_tracker.automatic docs]: /components/device_tracker.automatic/
|
[device_tracker.automatic docs]: /components/device_tracker.automatic/
|
||||||
[device_tracker.linksys_ap docs]: /components/device_tracker.linksys_ap/
|
|
||||||
[device_tracker.unifi docs]: /components/device_tracker.unifi/
|
[device_tracker.unifi docs]: /components/device_tracker.unifi/
|
||||||
[dweet docs]: /components/dweet/
|
[dweet docs]: /components/dweet/
|
||||||
[eight_sleep docs]: /components/eight_sleep/
|
[eight_sleep docs]: /components/eight_sleep/
|
||||||
|
@ -61,7 +61,7 @@ If you follow our [twitter feed](https://twitter.com/home_assistant) then you ma
|
|||||||
## Release 0.59.2 - December 6
|
## Release 0.59.2 - December 6
|
||||||
|
|
||||||
- Require FF43 for latest js ([@andrey-git] - [#10941])
|
- Require FF43 for latest js ([@andrey-git] - [#10941])
|
||||||
- Fix linksys_ap.py by inheriting DeviceScanner ([@mateuszdrab] - [#10947]) ([device_tracker.linksys_ap docs])
|
- Fix linksys_ap.py by inheriting DeviceScanner ([@mateuszdrab] - [#10947])
|
||||||
- Upgrade tellduslive library version (closes https://github.com/home-assistant/home-assistant/issues/10922) ([@molobrakos] - [#10950]) ([tellduslive docs])
|
- Upgrade tellduslive library version (closes https://github.com/home-assistant/home-assistant/issues/10922) ([@molobrakos] - [#10950]) ([tellduslive docs])
|
||||||
- Allow chime to work for wink siren/chime ([@w1ll1am23] - [#10961]) ([wink docs])
|
- Allow chime to work for wink siren/chime ([@w1ll1am23] - [#10961]) ([wink docs])
|
||||||
- Reload closest store on api menu request ([@craigjmidwinter] - [#10962]) ([dominos docs])
|
- Reload closest store on api menu request ([@craigjmidwinter] - [#10962]) ([dominos docs])
|
||||||
@ -420,7 +420,6 @@ Experiencing issues introduced by this release? Please report them in our [issue
|
|||||||
[@molobrakos]: https://github.com/molobrakos
|
[@molobrakos]: https://github.com/molobrakos
|
||||||
[@w1ll1am23]: https://github.com/w1ll1am23
|
[@w1ll1am23]: https://github.com/w1ll1am23
|
||||||
[@craigjmidwinter]: https://github.com/craigjmidwinter
|
[@craigjmidwinter]: https://github.com/craigjmidwinter
|
||||||
[device_tracker.linksys_ap docs]: /components/device_tracker.linksys_ap/
|
|
||||||
[dominos docs]: /components/dominos/
|
[dominos docs]: /components/dominos/
|
||||||
[media_player.cast docs]: /components/media_player.cast/
|
[media_player.cast docs]: /components/media_player.cast/
|
||||||
[tellduslive docs]: /components/tellduslive/
|
[tellduslive docs]: /components/tellduslive/
|
||||||
|
@ -223,7 +223,7 @@ Experiencing issues introduced by this release? Please report them in our [issue
|
|||||||
- **UPS** - ([@frenck] - [#25746]) ([ups docs])
|
- **UPS** - ([@frenck] - [#25746]) ([ups docs])
|
||||||
- **FEDEX** - ([@frenck] - [#25745]) ([fedex docs])
|
- **FEDEX** - ([@frenck] - [#25745]) ([fedex docs])
|
||||||
- **SRP Energy** - ([@frenck] - [#25754])
|
- **SRP Energy** - ([@frenck] - [#25754])
|
||||||
- **Linksys AP** - ([@frenck] - [#25804]) ([linksys_ap docs])
|
- **Linksys AP** - ([@frenck] - [#25804])
|
||||||
|
|
||||||
- **Ruter** - *Removed* - Ruter Labs which hosted the API has shut down the service. As an alternative, see the Entur public transport integration. - ([@ludeeus] - [#26041])
|
- **Ruter** - *Removed* - Ruter Labs which hosted the API has shut down the service. As an alternative, see the Entur public transport integration. - ([@ludeeus] - [#26041])
|
||||||
- **Googlehome** - *Removed* - In recent months this integration was broken when Google changed the port they serve this information on, in addition to requiring a token header in the request. That method requires the user to have a rooted android device, and even then then the "result" was not the best, since you often need to get that token. As an alternative to the device tracker, users can look into https://community.home-assistant.io/t/monitor-reliable-multi-user-distributed-bluetooth-occupancy-presence-detection/68505 - ([@ludeeus] - [#26035])
|
- **Googlehome** - *Removed* - In recent months this integration was broken when Google changed the port they serve this information on, in addition to requiring a token header in the request. That method requires the user to have a rooted android device, and even then then the "result" was not the best, since you often need to get that token. As an alternative to the device tracker, users can look into https://community.home-assistant.io/t/monitor-reliable-multi-user-distributed-bluetooth-occupancy-presence-detection/68505 - ([@ludeeus] - [#26035])
|
||||||
@ -355,7 +355,7 @@ anymore. - ([@abmantis] - [#25971])
|
|||||||
- Updater component is always available and shows on/off depending on whether an update is available or not ([@Santobert] - [#25418]) ([updater docs]) (breaking change)
|
- Updater component is always available and shows on/off depending on whether an update is available or not ([@Santobert] - [#25418]) ([updater docs]) (breaking change)
|
||||||
- Integration requirement check refactor ([@elupus] - [#25626])
|
- Integration requirement check refactor ([@elupus] - [#25626])
|
||||||
- Add Mikrotik hub and rework device tracker ([@slackr31337] - [#25664]) ([mikrotik docs]) (breaking change)
|
- Add Mikrotik hub and rework device tracker ([@slackr31337] - [#25664]) ([mikrotik docs]) (breaking change)
|
||||||
- Deprecates linksys_ap integration (ADR-0004) ([@frenck] - [#25804]) ([linksys_ap docs]) (breaking change)
|
- Deprecates linksys_ap integration (ADR-0004) ([@frenck] - [#25804]) (breaking change)
|
||||||
- Fix Broadlink MP1 unavailable error ([@miroslawkrol] - [#25806]) ([broadlink docs])
|
- Fix Broadlink MP1 unavailable error ([@miroslawkrol] - [#25806]) ([broadlink docs])
|
||||||
- Add arcus trigonometry functions to templates ([@tomilehto] - [#25510])
|
- Add arcus trigonometry functions to templates ([@tomilehto] - [#25510])
|
||||||
- Add error handling to !include command in yaml ([@thomasloven] - [#25801])
|
- Add error handling to !include command in yaml ([@thomasloven] - [#25801])
|
||||||
@ -418,7 +418,7 @@ anymore. - ([@abmantis] - [#25971])
|
|||||||
- Fix bmw_connected_drive and eq3btsmart components by updating their dependencies ([@OliverRepo] - [#26012]) ([bmw_connected_drive docs]) ([eq3btsmart docs])
|
- Fix bmw_connected_drive and eq3btsmart components by updating their dependencies ([@OliverRepo] - [#26012]) ([bmw_connected_drive docs]) ([eq3btsmart docs])
|
||||||
- Upgrade luftdaten to 0.6.3 ([@fabaff] - [#26009]) ([luftdaten docs])
|
- Upgrade luftdaten to 0.6.3 ([@fabaff] - [#26009]) ([luftdaten docs])
|
||||||
- Upgrade pysnmp to 4.4.11 ([@fabaff] - [#26010]) ([snmp docs])
|
- Upgrade pysnmp to 4.4.11 ([@fabaff] - [#26010]) ([snmp docs])
|
||||||
- Upgrade beautifulsoup4 to 4.8.0 ([@fabaff] - [#26006]) ([linksys_ap docs]) ([scrape docs])
|
- Upgrade beautifulsoup4 to 4.8.0 ([@fabaff] - [#26006]) ([scrape docs])
|
||||||
- Allow entities to indicate they should be disabled by default ([@balloob] - [#26011])
|
- Allow entities to indicate they should be disabled by default ([@balloob] - [#26011])
|
||||||
- Hue tweak registered device type + discovery exception ([@balloob] - [#25977]) ([hue docs])
|
- Hue tweak registered device type + discovery exception ([@balloob] - [#25977]) ([hue docs])
|
||||||
- Fix config entry has options check ([@balloob] - [#25976]) ([config docs])
|
- Fix config entry has options check ([@balloob] - [#25976]) ([config docs])
|
||||||
@ -821,7 +821,6 @@ anymore. - ([@abmantis] - [#25971])
|
|||||||
[kodi docs]: /components/kodi/
|
[kodi docs]: /components/kodi/
|
||||||
[lacrosse docs]: /components/lacrosse/
|
[lacrosse docs]: /components/lacrosse/
|
||||||
[life360 docs]: /components/life360/
|
[life360 docs]: /components/life360/
|
||||||
[linksys_ap docs]: /components/linksys_ap/
|
|
||||||
[luci docs]: /components/luci/
|
[luci docs]: /components/luci/
|
||||||
[luftdaten docs]: /components/luftdaten/
|
[luftdaten docs]: /components/luftdaten/
|
||||||
[lutron docs]: /components/lutron/
|
[lutron docs]: /components/lutron/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user