]> git.earman.xyz Git - sensor-watch.git/commitdiff
add third letter to settings for custom LCD
authorJoey Castillo <joeycastillo@utexas.edu>
Sat, 15 Mar 2025 19:44:10 +0000 (15:44 -0400)
committerJoey Castillo <joeycastillo@utexas.edu>
Sat, 15 Mar 2025 19:44:10 +0000 (15:44 -0400)
watch-faces/settings/preferences_face.c

index 9cf7a7f1dc566a475b84812e3ceb72f40ff4d198..03fc7678e9fc46a31985c2eac82fdf82fda6800c 100644 (file)
 #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) {