Replies: 8 comments 7 replies
-
|
Yes I know it works with Tesla. But all standards on EV charging demand minimum charge current is 6A, and we would hate to have to support users who lower the current to 5A and then get problems with their EV's. So if you want to deviate from the standards, you can change the code to your likings, that is the great thing of open source! |
Beta Was this translation helpful? Give feedback.
-
|
That is a great point, happy to help with that!
Now as you might or might not now, we are now fully concentrating on bringing out version 3.5.0 , so I like to put this in version 3.5.1 .
How about if you wait (a few weeks) until our 3.5.0 is stabilized and then you bring out a Pull Request? I would hate doing it now because you would keep updating your pull request to changes in our repo...
Ok with that?
"negronoir" ***@***.***> schreef op 7 maart 2024 om 09:07:
…
Haha you are very hard to convince to reduce to 5A :-)
Okay, I'll continue building my own versions. Thanks anyway!
But as I test each new released version and also the related code is a bit messy (it is not enough to change the MIN_CURRENT constant because the value "6" is hardcoded in a couple of places, It's a little effort that I'd like to avoid.
So please, in next release change this source code lines
evse.h
Line 493: {"MIN", "MIN Charge Current the EV will accept (per phase)", 6, 16, MIN_CURRENT},
change to: {"MIN", "MIN Charge Current the EV will accept (per phase)", MIN_CURRENT, 16, MIN_CURRENT},
evse.cpp
Line 471: if ((current >= 60) && (current <= 510)) DutyCycle = current / 0.6;
change to: if ((current >= (MIN_CURRENT * 10)) && (current <= 510)) DutyCycle = current / 0.6;
Line 3953: if(current >= 6 && current <= 16 && LoadBl < 2) {
change to: if(current >= MIN_CURRENT && current <= 16 && LoadBl < 2) {
So, in this way I can rebuild only changing constant MIN_CURRENT
Thanks!
—
Reply to this email directly, view it on GitHub #30 (reply in thread) , or unsubscribe https://github.com/notifications/unsubscribe-auth/ABOSIX57UHNJKHKSQ3MSJ3TYXBYA5AVCNFSM6AAAAABELAOP5WVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DOMBXHEZDQ .
You are receiving this because you modified the open/close state.
|
Beta Was this translation helpful? Give feedback.
-
|
Hi! I barely use GitHub so I'm not sure about creating pull requests properly. To tidy up "min current" related source code for allowing to build 5A custom versions please, in next release change this source code lines from RC2 I've updated lines): evse.h evse.cpp Line 3974: In this way we can rebuild only changing constant MIN_CURRENT Thanks! |
Beta Was this translation helpful? Give feedback.
-
|
You're a bit early, but I included the patch in my personal master, so it will included next release; I even added some code so now if you compile it like this: ...you don't even have to modify code. You're welcome! |
Beta Was this translation helpful? Give feedback.
-
|
Is there a build guide available for this version with minimal 5A? I'm also interested in this lower min_current :) |
Beta Was this translation helpful? Give feedback.
-
|
Hi Dingo Thank you for the great job. I tried adding the -DMIN_CURRENT=5 in my platfomio.ini and build the firmware. I can now lower the setting to 5A. But it will not go below 6A, when controlled by the EVSE in solar. When i reduce max to 5A in the car, it goes down to 5A. Regards Tommy |
Beta Was this translation helpful? Give feedback.
-
|
Does it go down to 5A when its controlled by SmartEVSE in Smart Mode? |
Beta Was this translation helpful? Give feedback.
-
|
So then your EV is the problem, not the EVSE? So dont fiddle with MinCurrent if your EV cant handle it and if you are not an expert. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
Another idea is to lower min current to 5A. I know that this is out of standard 6A, but some brands like Tesla, allow to charge at 5A.
If fact, changing few lines, it works. I rebuilt Serkri v1.7.3 & v1.8.0 to allow 5A and I've been using those custom firms for some months WO any issue related to 5A
Thanks
Beta Was this translation helpful? Give feedback.
All reactions