We are working on a project right now, where we're using coin cell batteries (3 x CR2032). The device is connected to the application via bluetooth and we're showing battery percentage on the app (Reading by turning ADC on during reading and turning ADC off after reading is taken. This saves battery life). My question is how do we display the percentage on the application throughout the life of the battery. Eg. 3.2 V - 100% 3.0 V - 80% 2.8 V - 60%
These values are exaggerated just to show why i'm trying to guess here. coin cell batteries discharge quickly from 3.2 to 2.9V and then they discharge very slowly. We want to show the readings, considering the nature of a coin cell battery. Eg. From 3.2V - 2.9V, we can show a reduction of 4-5% only and then do the rest of the calculations according to a slow rate.
Please suggest calculations which we can implement in our code.
We are currently following this but it doesn't make sense to me. https://devzone.nordicsemi.com/question/37130/battery-level-discharge-curve-how-can-i-read/
@2.9 V if we show less than half of the battery on the app, then the user would be confused as to why the battery drained quickly even when the user hardly used it.