Skip to content

Commit 830df36

Browse files
committed
Reorder print statements
1 parent 52a1f83 commit 830df36

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Diff for: examples/Battery/Battery.ino

+1-3
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,9 @@ void setup() {
3939
delay(1000); // Delay to give time to load the Serial Monitor
4040

4141
charger.begin();
42+
Serial.println("* 🔌 Charger initialized.");
4243
auto chargeVoltage = charger.getChargeVoltage();
4344
auto endOfChargeCurrent = charger.getEndOfChargeCurrent();
44-
// 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.");
4745
Serial.println("* ⚡️ Charge voltage: " + String(chargeVoltage) + " V");
4846
Serial.println("* ⚡️ End of charge current: " + String(endOfChargeCurrent) + " mA");
4947

0 commit comments

Comments
 (0)