├── .gitignore ├── LICENSE ├── README.md ├── custom_components └── eero │ ├── __init__.py │ ├── api │ ├── __init__.py │ ├── account.py │ ├── backup_network.py │ ├── client.py │ ├── const.py │ ├── eero.py │ ├── firmware.py │ ├── images │ │ └── logo_icon_white_background.png │ ├── network.py │ ├── profile.py │ ├── resource.py │ └── util.py │ ├── binary_sensor.py │ ├── button.py │ ├── config_flow.py │ ├── const.py │ ├── device_tracker.py │ ├── icons.json │ ├── image.py │ ├── light.py │ ├── manifest.json │ ├── number.py │ ├── select.py │ ├── sensor.py │ ├── services.yaml │ ├── strings.json │ ├── switch.py │ ├── time.py │ ├── translations │ └── en.json │ ├── update.py │ └── util.py ├── hacs.json └── info.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/eero/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/__init__.py -------------------------------------------------------------------------------- /custom_components/eero/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/api/__init__.py -------------------------------------------------------------------------------- /custom_components/eero/api/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/api/account.py -------------------------------------------------------------------------------- /custom_components/eero/api/backup_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/api/backup_network.py -------------------------------------------------------------------------------- /custom_components/eero/api/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/api/client.py -------------------------------------------------------------------------------- /custom_components/eero/api/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/api/const.py -------------------------------------------------------------------------------- /custom_components/eero/api/eero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/api/eero.py -------------------------------------------------------------------------------- /custom_components/eero/api/firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/api/firmware.py -------------------------------------------------------------------------------- /custom_components/eero/api/images/logo_icon_white_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/api/images/logo_icon_white_background.png -------------------------------------------------------------------------------- /custom_components/eero/api/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/api/network.py -------------------------------------------------------------------------------- /custom_components/eero/api/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/api/profile.py -------------------------------------------------------------------------------- /custom_components/eero/api/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/api/resource.py -------------------------------------------------------------------------------- /custom_components/eero/api/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/api/util.py -------------------------------------------------------------------------------- /custom_components/eero/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/eero/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/button.py -------------------------------------------------------------------------------- /custom_components/eero/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/config_flow.py -------------------------------------------------------------------------------- /custom_components/eero/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/const.py -------------------------------------------------------------------------------- /custom_components/eero/device_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/device_tracker.py -------------------------------------------------------------------------------- /custom_components/eero/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/icons.json -------------------------------------------------------------------------------- /custom_components/eero/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/image.py -------------------------------------------------------------------------------- /custom_components/eero/light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/light.py -------------------------------------------------------------------------------- /custom_components/eero/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/manifest.json -------------------------------------------------------------------------------- /custom_components/eero/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/number.py -------------------------------------------------------------------------------- /custom_components/eero/select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/select.py -------------------------------------------------------------------------------- /custom_components/eero/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/sensor.py -------------------------------------------------------------------------------- /custom_components/eero/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/services.yaml -------------------------------------------------------------------------------- /custom_components/eero/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/strings.json -------------------------------------------------------------------------------- /custom_components/eero/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/switch.py -------------------------------------------------------------------------------- /custom_components/eero/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/time.py -------------------------------------------------------------------------------- /custom_components/eero/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/translations/en.json -------------------------------------------------------------------------------- /custom_components/eero/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/update.py -------------------------------------------------------------------------------- /custom_components/eero/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/custom_components/eero/util.py -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmittx/home-assistant-eero/HEAD/hacs.json -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------