I’m using FuelGauge lib to get a read on the battery on my Electron device.
I hooked it up with a 7400 mA / 3.7V and for some reason when I charge it up to 100% the FuelGauge returns that it has only 80%.
I’ve been using this basic sample of code to get voltage and percentage:
FuelGauge fuel;
fuel.getVCell(); // For votlage
fuel.getSoC(); // For percentage
This is normal, the fuel gauge wants a higher charged voltage than the battery charger is charging the battery before it shows the battery at 100% full.
Particle set the charging voltage a little low on purpose to be safe with people charging the LiPo batteries in higher temperatures or when inside an enclosure.
The best thing to do is use the MAP function and scaled the battery voltage of 0-80-85% to 0-100%.
You can raise the charging voltage but it didn’t work well for me so I stuck with the default charging voltage settings.
You can search the forum for more info about this but that is the gist of it.
Just to make sure I got things right:
The same sensor that gives the FuelGauge the read on the battery is the same sensor that limits the battery chraging?
So even if I charge the battery not through particle I will always have 80% max read (although it is really 100%)
Isn’t 20% buffer too much to loose?