Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ion098 committed Feb 20, 2024
1 parent 467b343 commit c1de9e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/motor_temp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ void monitor_temp() {
std::array<lv_obj_t*, 8> labels;
for(int i = 0; i < 8; i++) {
labels[i] = lv_label_create(motor_temp_page, NULL);
lv_obj_align(labels[i], NULL, LV_ALIGN_IN_TOP_LEFT, 10, 20 * i);
lv_obj_align(labels[i], NULL, LV_ALIGN_IN_TOP_LEFT, 10, 20 * i + 20);
}
while (true) {
print_temp(left_front, "drive lf", labels[0]);
Expand Down

0 comments on commit c1de9e0

Please sign in to comment.