]> Devi Nivas Git - smartwatch.git/commitdiff
Reduce grid rows and columns
authorAdvaith Menon <noreply-git@bp4k.net>
Tue, 25 Nov 2025 15:37:53 +0000 (10:37 -0500)
committerAdvaith Menon <noreply-git@bp4k.net>
Tue, 25 Nov 2025 15:37:53 +0000 (10:37 -0500)
* Change homescreen grid to 2x2
* Change Pedometer app name to Exercise

main/task_lcd.c

index 2ab3138da8ee16dcefd1442091e64b6f16d4193c..67b8a57535d073f61c062fecb802a81cc895f13e 100644 (file)
@@ -50,7 +50,7 @@ struct app_t applist[NUM_APPS] = {
         .icon.width = 0,
         .icon.height = 0,
         .icon.data = NULL,
-        .name = "Pedometer fr :)"
+        .name = "Exercise"
     }
 };
 
@@ -354,8 +354,8 @@ void lcd_homepage_draw_color(gl_display_t *disp, uint8_t num_rows,
 
 
 void lcd_homepage_loop(gl_display_t *disp) {
-    uint8_t num_rows = 3;
-    uint8_t num_cols = 3;
+    uint8_t num_rows = 2;
+    uint8_t num_cols = 2;
     uint8_t num_padd = APPSCR_PAD;
     uint8_t curr_idx = num_rows * num_cols - 1;
     lcd_clock_loop(disp);