├── .gitignore ├── LICENSE ├── README.md ├── custom_components └── alfen_wallbox │ ├── __init__.py │ ├── alfen.py │ ├── binary_sensor.py │ ├── button.py │ ├── config_flow.py │ ├── const.py │ ├── coordinator.py │ ├── diagnostics.py │ ├── entity.py │ ├── manifest.json │ ├── number.py │ ├── select.py │ ├── sensor.py │ ├── services.yaml │ ├── strings.json │ ├── switch.py │ ├── text.py │ └── translations │ ├── en.json │ └── nl.json ├── doc ├── alfen_props.md └── screenshots │ ├── Screen Shot 2022-06-01 at 13.34.44.png │ ├── attribute category.png │ ├── categories.png │ ├── configure.png │ ├── wallbox-1.png │ ├── wallbox-2.png │ └── wallbox-3.png ├── hacs.json └── info.md /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/custom_components/alfen_wallbox/__init__.py -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/alfen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/custom_components/alfen_wallbox/alfen.py -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/custom_components/alfen_wallbox/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/custom_components/alfen_wallbox/button.py -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/custom_components/alfen_wallbox/config_flow.py -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/custom_components/alfen_wallbox/const.py -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/custom_components/alfen_wallbox/coordinator.py -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/custom_components/alfen_wallbox/diagnostics.py -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/custom_components/alfen_wallbox/entity.py -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/custom_components/alfen_wallbox/manifest.json -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/custom_components/alfen_wallbox/number.py -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/custom_components/alfen_wallbox/select.py -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/custom_components/alfen_wallbox/sensor.py -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/custom_components/alfen_wallbox/services.yaml -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/custom_components/alfen_wallbox/strings.json -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/custom_components/alfen_wallbox/switch.py -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/custom_components/alfen_wallbox/text.py -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/custom_components/alfen_wallbox/translations/en.json -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/translations/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/custom_components/alfen_wallbox/translations/nl.json -------------------------------------------------------------------------------- /doc/alfen_props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/doc/alfen_props.md -------------------------------------------------------------------------------- /doc/screenshots/Screen Shot 2022-06-01 at 13.34.44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/doc/screenshots/Screen Shot 2022-06-01 at 13.34.44.png -------------------------------------------------------------------------------- /doc/screenshots/attribute category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/doc/screenshots/attribute category.png -------------------------------------------------------------------------------- /doc/screenshots/categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/doc/screenshots/categories.png -------------------------------------------------------------------------------- /doc/screenshots/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/doc/screenshots/configure.png -------------------------------------------------------------------------------- /doc/screenshots/wallbox-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/doc/screenshots/wallbox-1.png -------------------------------------------------------------------------------- /doc/screenshots/wallbox-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/doc/screenshots/wallbox-2.png -------------------------------------------------------------------------------- /doc/screenshots/wallbox-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/doc/screenshots/wallbox-3.png -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Alfen Wallbox" 3 | } -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeyuentuen/alfen_wallbox/HEAD/info.md --------------------------------------------------------------------------------