From: Advaith Menon Date: Tue, 25 Nov 2025 15:37:53 +0000 (-0500) Subject: Reduce grid rows and columns X-Git-Url: https://git.devinivas.org/?a=commitdiff_plain;h=82b9e3eff5f83b282eed2ba08e887fefc87b0122;p=smartwatch.git Reduce grid rows and columns * Change homescreen grid to 2x2 * Change Pedometer app name to Exercise --- diff --git a/main/task_lcd.c b/main/task_lcd.c index 2ab3138..67b8a57 100644 --- a/main/task_lcd.c +++ b/main/task_lcd.c @@ -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);