mirror of
https://github.com/brendanhaines/ECEN5458_Project.git
synced 2024-11-09 21:14:47 -07:00
add battery voltage print
This commit is contained in:
parent
0775309220
commit
c5d77ac9b3
|
@ -221,6 +221,7 @@ def update_battery_voltage(attrname=None, old=None, new=None):
|
|||
global vbat_text
|
||||
vadc = get_mux_adc(BAT_MUX_CHAN)
|
||||
# vbat = vadc * (10+1)/1
|
||||
print(vadc)
|
||||
vbat = vadc * 12.21/1.018
|
||||
vbat_text.text = f"Battery Voltage: {vbat:2.1f}V"
|
||||
if vbat < VBAT_THRESHOLD:
|
||||
|
|
Loading…
Reference in New Issue
Block a user