1
0
mirror of https://github.com/CovidBraceletPrj/CovidBracelet.git synced 2024-06-02 02:38:09 +02:00

Print SOC with constant length

This commit is contained in:
Tobias Schramm 2021-02-09 13:59:17 +01:00 committed by Patrick Rathje
parent c8f40160bb
commit 76a55726e8

View File

@ -98,7 +98,7 @@ void main(void)
snprintf(tmpstr, sizeof(tmpstr), "%04u mV", battery_get_voltage_mv()); snprintf(tmpstr, sizeof(tmpstr), "%04u mV", battery_get_voltage_mv());
platform_display_draw_string(0, DISPLAY_LINE_BATTERY_VOLTAGE + 1, tmpstr); platform_display_draw_string(0, DISPLAY_LINE_BATTERY_VOLTAGE + 1, tmpstr);
snprintf(tmpstr, sizeof(tmpstr), "%u%%", battery_voltage_mv_to_soc(battery_get_voltage_mv())); snprintf(tmpstr, sizeof(tmpstr), "% 3u%%", battery_voltage_mv_to_soc(battery_get_voltage_mv()));
platform_display_draw_string(0, DISPLAY_LINE_BATTERY_VOLTAGE + 3, tmpstr); platform_display_draw_string(0, DISPLAY_LINE_BATTERY_VOLTAGE + 3, tmpstr);
} }
do_covid(); do_covid();