Custom component to support Easee EV chargers.
The status sensor is the default sensor and has the following values
disconnected
awaiting_start
charging
ready_to_charge
completed
error
Important This component is on the way to make it into HA as an official component. Help out by liking the PR -> home-assistant/core#40162
There are 2 different methods of installing the custom component
While this component can be installed by HACS, it is not included in the default repository of HACS.
- Add this repository as a custom repository inside HACS settings. Make sure you select
Integration
as Category. - Install the component from the Overview page.
- Make sure you have git installed on your machine.
- Navigate to you home assistant configuration folder.
- Create a
custom_components
folder of it does not exist, navigate down into it after creation. - Execute the following command:
git clone https://github.com/fondberg/easee_hass.git easee
- Run
bash links.sh
Configuration is done through in Configuration > Integrations where you first configure it and then set the options for what you want to monitor.
This project uses black
for code formatting and flake8
for linting.
Always run
make lint
Before pushing your changes