We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1ef9a97 + 3fb85ec commit c3923f6Copy full SHA for c3923f6
1 file changed
CircuitPython_Templates/power_management_measuring_battery/code.py
@@ -24,11 +24,13 @@
24
lc709203.pack_size = PackSize.MAH400
25
26
device = lc709203
27
+ print("Battery monitor: LC709203")
28
29
elif 0x36 in i2c_address_list:
30
max17048 = MAX17048(board.I2C())
31
32
device = max17048
33
+ print("Battery monitor: MAX17048")
34
35
else:
36
raise Exception("Battery monitor not found.")
0 commit comments