Replies: 1 comment
-
|
Just a side question: how did you configure a port in Go-e app? It doesn't let me set one. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I configured the Go-e Charger to connect to Home Assistant on Port 9000 using ws://:9000/go-e and basic stuff works.
But Go-e has the "MeterValuesSampledData" set to read-only and therefore I get the following warnings:
The charger reports the following on the GetConfiguration Request:
Maybe only sending ChangeConfiguration for MeterValuesSampledData if it is writeable would solve that.
And sorting the values for the key MeterValuesSampledData alphabetically would ease debugging ;-)
Oh, I just saw in the code(1), that if you would order MeterValuesSampledData alphabetically it would look like what is already configured so you would not send the ChangeConfiguration request. Maybe that is the simplest solution.
Sorting needs to happen above here(2).
Thanks
Rainer
(1) https://github.com/lbbrhzn/ocpp/blob/main/custom_components/ocpp/api.py#L804
(2) https://github.com/lbbrhzn/ocpp/blob/main/custom_components/ocpp/config_flow.py#L108
Beta Was this translation helpful? Give feedback.
All reactions