Added the git through HACS.
rebooted, several times.
Still no integration able to add through Settings\Devices & Services
Any tips on how to get this to work?
I have a Easee Home wallbox EV charger, and Tibber.
Added the git through HACS.
rebooted, several times.
Still no integration able to add through Settings\Devices & Services
Any tips on how to get this to work?
I have a Easee Home wallbox EV charger, and Tibber.
Is the integration available in HACS->Integrations?
Try to refresh the browser cache.
Then install from Setttings->Devices and Services.
First of all thanks for a great integration! It seem to work very well.
Just a question about authorization, if the charger is configured not to be open but set to authorize by easee key or app - can it be authorized to start charging from the integration (i.e. the API)?
hi guys im hoping you could assist a noob i have purchased an EASEE unit and have it wired up in my workshop on the bench to program it in prior to instillation, i have a solar setup and want to put whatever amage am generating to the max current so the car chargers for free from the solar i have it as a reading as CAR AMPAGE, i am attempting to automate the max current to a set value of whatever the CAR AMPAGE is reading and im having a few problems hope you guys can guide me
thanks
jkhs112
Is it not possible to get the valus L1, L2, L3 and NL1, NL2, NL3 in to home assistant? all i get is total W.
What are you looking for Jörgen? If you’re looking for voltage or current per phase, they are available as attributes on the current- and voltagesensors. Since you mention Watt, power is only available as total as far as I know.
sorted my code this is the current amage calulation form my solar and my net
car_ampage:
device_class: energy
friendly_name: 'CAR_AMPAGE'
unit_of_measurement: A
value_template: "{{ (((states.sensor.realtime_solar_gen.state | int) - (states.sensor.net_bellow_0.state | int)) / 240) }}"
car_kwh:
device_class: energy
friendly_name: 'Car_KwH'
unit_of_measurement: KwH
value_template: "{{ (((states.sensor.realtime_solar_gen.state | int) - (states.sensor.net_bellow_0.state | int)) / 1000) }}"
and i worked out to use this automation action
service: easee.set_charger_circuit_dynamic_limit
data:
charger_id: UKRMQUAZ
currentP1: ‘{{ (states.sensor.car_ampage.state) }}’
and then made a second automation as a repeat timer to trigger every 5 seconds changing the Ampage and got it all working just got to install the unit.
Sorry, should have explained better. I have the easee euqalizer together with the easee charger and in the easee app I can see amps and volts per phase. But can’t find these in the Home assistant integration.
The ones I would like to obtain are therefore volts and amperes per phase. What I get is the watts consumed and the meter reading.
If I look in the integration, there are two sensors that are not available. sensor.qh8XXXX_current and sensor qh8XXXX_voltage. qh8XXXX is the equalizer.
Attached picture from the app, are Fas 1-3, the values I would like to get in the home assistant.
Ok, I see. I don’t have the Equalizer myself so I am not sure, but you should be able to see more than just power.
What do you see if you go to the Device-page (Settings → Devices & Services → Click on your Equalizer device on the Easee integration). Does it show any hidden entities? Perhaps some are hidden or disabled?
If not I would recommend to to re-install the Easee integration. There was a change some time back that modified how entities were selected. I believe you issues is that not all entities are enabled (before it was done in the dropdown menu during setup, now it is done with the HA enable/disable feature).
I found some hidden entities, but only voltage and amps for phase 1, phase 2-3 don’t exist.
Good. Did you look in the attributes? Not sure for the Equalizer, but for the charger itself it is in the attributes.
I do apologise if this has been covered, however I have read the thread but unable to see if my question is possible.
Is Home Assistant capable of having the Easee charger tell a Tesla Powerwall to change its modes when the Easee starts charging an EV? Reason being, if the Powerwall is discharging to the home, the Easee drains the Powerwall into the car. Therefore I would like the Easee to tell the Powerwall to change discharging to charging via modes. That would stop the PW discharging into the Easee and then both the Easee and the PW will charge from the grid at the same time. Then Easee to tell the PW to discharge when EV charging stops. Simply put, Easee to command the PW to change its modes on an Easee event. Thank you in advance.
I’ve added a simple control of the easee wallbox with SolarEdge, which may be helpful for someone: https://github.com/fondberg/easee_hass/issues/181#issuecomment-1224112139
Hi Fredrik,
Did you manage to get the import energy from the Equalizer?
Hi,
No I didn’t. I raised an issue with Easee but they were not helpful.
Got a few messages that the issue was solved but no real change.
I have been in contact with both LandisGyr and Easee, and it’s just as expected: Easee doesn’t support those readings from the E360.
But the contact from Easee says it will be supported in the new firmware “that will be available soon”.
Does anyone know how to fix so that the reading from Easee equalizer import energy becomes right? Now it shows 521961,0 kwh, but the correct value is 52196,1 kwh. The decimal is in the wrong place.
Hi!
I just installed an easee charger at home. Downloaded the integration and addad it through HACS and integrations.
It find the charger but all available sensors etc shows as “unavailable” and in the log this shows:
Logger: homeassistant
Source: custom_components/easee/controller.py:421
Integration: Easee EV Charger (documentation, issues)
First occurred: 15:16:53 (2 occurrences)
Last logged: 15:17:44
Error doing job: Task exception was never retrieved
Traceback (most recent call last): File “/config/custom_components/easee/controller.py”, line 421, in refresh_sites_state charger_data.state = site_state.get_charger_state(charger_id, raw=True) File “/usr/local/lib/python3.10/site-packages/pyeasee/site.py”, line 128, in get_charger_state return ChargerState(charger_data[“chargerState”], raw) File “/usr/local/lib/python3.10/site-packages/pyeasee/charger.py”, line 56, in init data = { TypeError: ‘NoneType’ object is not a mapping
Any suggestions?
There seems to be a problem with the API at Easee just now that affects startup of HA.
Thanks! I will try to restart later.