Hi,
I am using this little board AB01 v1 to build the weather station from chrisys.
The code provides both BatteryVoltage and BatteryLevel
batteryVoltage = getBatteryVoltage();
batteryLevel = (BoardGetBatteryLevel() / 254) * 100;
The issue is that while I get the batteryVoltage perfectly fine. batteryLevel shows always 0.
I have been trying to locate BoradBatteryLevel() function/method and I have not found it. I only see a call to the following within LoraWanApp.cpp but I have no clue where the definition of BoardGetBatteryLevel is.
Any ideas would be really appreciated.
Thanks
JA