Skip to content

Commit 2f479e5

Browse files
AvamanderJF002
authored andcommitted
Fixed a bunch of format specifiers
1 parent f317d54 commit 2f479e5

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

src/displayapp/screens/Steps.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ Steps::Steps(
3030

3131
lSteps = lv_label_create(lv_scr_act(), nullptr);
3232
lv_obj_set_style_local_text_color(lSteps, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x00FF00));
33-
lv_obj_set_style_local_text_font(lSteps, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_42);
34-
lv_label_set_text_fmt(lSteps, "%li", stepsCount);
33+
lv_obj_set_style_local_text_font(lSteps, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_42);
34+
lv_label_set_text_fmt(lSteps, "%li", stepsCount);
3535
lv_obj_align(lSteps, nullptr, LV_ALIGN_CENTER, 0, -20);
3636

3737
lv_obj_t * lstepsL = lv_label_create(lv_scr_act(), nullptr);
@@ -41,7 +41,7 @@ Steps::Steps(
4141

4242
lv_obj_t * lstepsGoal = lv_label_create(lv_scr_act(), nullptr);
4343
lv_obj_set_style_local_text_color(lstepsGoal, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_CYAN);
44-
lv_label_set_text_fmt(lstepsGoal,"Goal\n%i", settingsController.GetStepsGoal());
44+
lv_label_set_text_fmt(lstepsGoal, "Goal\n%lu", settingsController.GetStepsGoal());
4545
lv_label_set_align(lstepsGoal, LV_LABEL_ALIGN_CENTER);
4646
lv_obj_align(lstepsGoal, lSteps, LV_ALIGN_OUT_BOTTOM_MID, 0, 60);
4747

src/displayapp/screens/SystemInfo.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -192,11 +192,11 @@ std::unique_ptr<Screen> SystemInfo::CreateScreen3() {
192192
"\n"
193193
"#444444 LVGL Memory#\n"
194194
" #444444 used# %d (%d%%)\n"
195-
" #444444 max used# %d\n"
195+
" #444444 max used# %lu\n"
196196
" #444444 frag# %d%%\n"
197197
" #444444 free# %d"
198198
"\n"
199-
"#444444 Steps# %li",
199+
"#444444 Steps# %i",
200200
bleAddr[5],
201201
bleAddr[4],
202202
bleAddr[3],

src/displayapp/screens/Timer.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ Timer::Timer(DisplayApp* app, Controllers::TimerController& timerController)
6363
lv_obj_set_style_local_text_color(time, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_GRAY);
6464

6565
uint32_t seconds = timerController.GetTimeRemaining() / 1000;
66-
lv_label_set_text_fmt(time, "%02d:%02d", seconds / 60, seconds % 60);
67-
66+
lv_label_set_text_fmt(time, "%02lu:%02lu", seconds / 60, seconds % 60);
67+
6868
lv_obj_align(time, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 0, -20);
6969

7070
btnPlayPause = lv_btn_create(lv_scr_act(), nullptr);
@@ -90,7 +90,7 @@ Timer::~Timer() {
9090
bool Timer::Refresh() {
9191
if (timerController.IsRunning()) {
9292
uint32_t seconds = timerController.GetTimeRemaining() / 1000;
93-
lv_label_set_text_fmt(time, "%02d:%02d", seconds / 60, seconds % 60);
93+
lv_label_set_text_fmt(time, "%02lu:%02lu", seconds / 60, seconds % 60);
9494
}
9595
return running;
9696
}

src/displayapp/screens/settings/SettingSteps.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ SettingSteps::SettingSteps(
4545

4646
stepValue = lv_label_create(lv_scr_act(), NULL);
4747
lv_obj_set_style_local_text_font(stepValue, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_42);
48-
lv_label_set_text_fmt(stepValue,"%i", settingsController.GetStepsGoal());
48+
lv_label_set_text_fmt(stepValue, "%lu", settingsController.GetStepsGoal());
4949
lv_label_set_align(stepValue, LV_LABEL_ALIGN_CENTER);
5050
lv_obj_align(stepValue, lv_scr_act(), LV_ALIGN_CENTER, 0, -10);
5151

@@ -81,7 +81,7 @@ void SettingSteps::UpdateSelected(lv_obj_t *object, lv_event_t event) {
8181
value += 1000;
8282
if ( value <= 500000 ) {
8383
settingsController.SetStepsGoal(value);
84-
lv_label_set_text_fmt(stepValue,"%i", settingsController.GetStepsGoal());
84+
lv_label_set_text_fmt(stepValue, "%lu", settingsController.GetStepsGoal());
8585
lv_obj_align(stepValue, lv_scr_act(), LV_ALIGN_CENTER, 0, -10);
8686
}
8787
}
@@ -90,7 +90,7 @@ void SettingSteps::UpdateSelected(lv_obj_t *object, lv_event_t event) {
9090
value -= 1000;
9191
if ( value >= 1000 ) {
9292
settingsController.SetStepsGoal(value);
93-
lv_label_set_text_fmt(stepValue,"%i", settingsController.GetStepsGoal());
93+
lv_label_set_text_fmt(stepValue, "%lu", settingsController.GetStepsGoal());
9494
lv_obj_align(stepValue, lv_scr_act(), LV_ALIGN_CENTER, 0, -10);
9595
}
9696
}

0 commit comments

Comments
 (0)