From 82b9e3eff5f83b282eed2ba08e887fefc87b0122 Mon Sep 17 00:00:00 2001 From: Advaith Menon Date: Tue, 25 Nov 2025 10:37:53 -0500 Subject: [PATCH] Reduce grid rows and columns * Change homescreen grid to 2x2 * Change Pedometer app name to Exercise --- main/task_lcd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); -- 2.47.3