Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions homeassistant/components/linksys_ap/device_tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@

def get_scanner(hass, config):
"""Validate the configuration and return a Linksys AP scanner."""
_LOGGER.warning(
"The linksys_ap integration is deprecated and will be removed "
"in Home Assistant 0.100.0. For more information see ADR-0004:"
"https://github.com/home-assistant/architecture/blob/master/adr/0004-webscraping.md"
)

try:
return LinksysAPDeviceScanner(config[DOMAIN])
except ConnectionError:
Expand Down