├── .gitignore ├── LICENSE ├── README.md ├── custom_components └── alfen_wallbox │ ├── __init__.py │ ├── alfen.py │ ├── config_flow.py │ ├── const.py │ ├── manifest.json │ ├── sensor.py │ ├── services.yaml │ ├── strings.json │ └── translations │ └── en.json ├── doc ├── Screen Shot 2022-06-01 at 13.34.44.png └── alfen_props.md ├── hacs.json └── info.md /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egnerfl/alfen_wallbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egnerfl/alfen_wallbox/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egnerfl/alfen_wallbox/HEAD/custom_components/alfen_wallbox/__init__.py -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/alfen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egnerfl/alfen_wallbox/HEAD/custom_components/alfen_wallbox/alfen.py -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egnerfl/alfen_wallbox/HEAD/custom_components/alfen_wallbox/config_flow.py -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egnerfl/alfen_wallbox/HEAD/custom_components/alfen_wallbox/const.py -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egnerfl/alfen_wallbox/HEAD/custom_components/alfen_wallbox/manifest.json -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egnerfl/alfen_wallbox/HEAD/custom_components/alfen_wallbox/sensor.py -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egnerfl/alfen_wallbox/HEAD/custom_components/alfen_wallbox/services.yaml -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egnerfl/alfen_wallbox/HEAD/custom_components/alfen_wallbox/strings.json -------------------------------------------------------------------------------- /custom_components/alfen_wallbox/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egnerfl/alfen_wallbox/HEAD/custom_components/alfen_wallbox/translations/en.json -------------------------------------------------------------------------------- /doc/Screen Shot 2022-06-01 at 13.34.44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egnerfl/alfen_wallbox/HEAD/doc/Screen Shot 2022-06-01 at 13.34.44.png -------------------------------------------------------------------------------- /doc/alfen_props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egnerfl/alfen_wallbox/HEAD/doc/alfen_props.md -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Alfen Wallbox" 3 | } -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egnerfl/alfen_wallbox/HEAD/info.md --------------------------------------------------------------------------------