From 24a08d00c63fe17fe45a8bb7b817894b7b55c6aa Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Sat, 15 Mar 2025 15:44:10 -0400 Subject: [PATCH] add third letter to settings for custom LCD --- watch-faces/settings/preferences_face.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/watch-faces/settings/preferences_face.c b/watch-faces/settings/preferences_face.c index 9cf7a7f1..03fc7678 100644 --- a/watch-faces/settings/preferences_face.c +++ b/watch-faces/settings/preferences_face.c @@ -27,14 +27,14 @@ #include "watch.h" const char preferences_face_titles[PREFERENCES_PAGE_NUM_PREFERENCES][11] = { - "CL ", // Clock: 12 or 24 hour - "BT beep ", // Mode button: how loud should it beep? - "TO ", // Timeout: how long before we snap back to the clock face? - "LE ", // Low Energy mode: how long before it engages? - "LT ", // Light: duration - "LT red ", // Light: red component - "LT green", // Light: green component - "LT blue ", // Light: blue component (for watches with blue LED) + "CL K", // Clock: 12 or 24 hour + "BT beep N", // Mode button: how loud should it beep? + "TO U", // Timeout: how long before we snap back to the clock face? + "LE M", // Low Energy mode: how long before it engages? + "LT D", // Light: duration + "LT red C", // Light: red component + "LT greenC", // Light: green component + "LT blue C", // Light: blue component (for watches with blue LED) }; void preferences_face_setup(uint8_t watch_face_index, void ** context_ptr) {