We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52a1f83 commit 830df36Copy full SHA for 830df36
examples/Battery/Battery.ino
@@ -39,11 +39,9 @@ void setup() {
39
delay(1000); // Delay to give time to load the Serial Monitor
40
41
charger.begin();
42
+ Serial.println("* 🔌 Charger initialized.");
43
auto chargeVoltage = charger.getChargeVoltage();
44
auto endOfChargeCurrent = charger.getEndOfChargeCurrent();
- // charger.setChargeVoltage(4.2); // Set the charge voltage in V
45
- // charger.setEndOfChargeCurrent(5); // Set the end of charge current in mA
46
- Serial.println("* 🔌 Charger initialized.");
47
Serial.println("* ⚡️ Charge voltage: " + String(chargeVoltage) + " V");
48
Serial.println("* ⚡️ End of charge current: " + String(endOfChargeCurrent) + " mA");
49
0 commit comments