Hello
I have a bittle with NyBoard V1_0,
Connecting a fully charged battery to the NyBoard it starts beeping that the battery is dead.
I tried downloading OpenCat again but it didn't help I also checked if the voltage is right (it was about 7V) I don't really know what to do else that could help.
I really hope someone has a idea what to do.
Thanks in advance.
What about commenting out the voltage detector section in OpenCat.ino?
float voltage = analogRead(BATT); if (voltage < LOW_BATT) { //if battery voltage < threshold, it needs to be recharged //give the robot a break when voltage drops after sprint //adjust the thresholds according to your batteries' voltage //if set too high, the robot will stop working when the battery still has power. //If too low, the robot may not alarm before the battery shuts off PTL("Low power!"); beep(15, 50, 50, 3); delay(1500); } else