From 5c793ff954d5df8fa68b31c85e90b29bc9ab4202 Mon Sep 17 00:00:00 2001 From: rush Date: Mon, 29 Jun 2026 10:19:11 -0400 Subject: [PATCH] Re-order secondary, set some defaults --- movement_config.h | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/movement_config.h b/movement_config.h index 8e1dc96..cf51319 100644 --- a/movement_config.h +++ b/movement_config.h @@ -32,11 +32,11 @@ const watch_face_t watch_faces[] = { fast_stopwatch_face, countdown_face, alarm_face, - temperature_display_face, voltage_face, totp_face, - settings_face, + temperature_display_face, set_time_face, + settings_face, }; #define MOVEMENT_NUM_FACES (sizeof(watch_faces) / sizeof(watch_face_t)) @@ -47,7 +47,7 @@ const watch_face_t watch_faces[] = { * Some folks also like to use this to hide the preferences and time set faces from the normal rotation. * If you don't want any faces to be excluded, set this to 0 and a long Mode press will have no effect. */ -#define MOVEMENT_SECONDARY_FACE_INDEX (MOVEMENT_NUM_FACES - 3) +#define MOVEMENT_SECONDARY_FACE_INDEX (MOVEMENT_NUM_FACES - 5) /* Custom hourly chime tune. Check movement_custom_signal_tunes.h for options. */ #define SIGNAL_TUNE_MGS_CODEC @@ -55,7 +55,7 @@ const watch_face_t watch_faces[] = { /* Determines the intensity of the led colors * Set a hex value 0-15 with 0x0 being off and 0xF being max intensity */ -#define MOVEMENT_DEFAULT_RED_COLOR 0x0 +#define MOVEMENT_DEFAULT_RED_COLOR 0xF #define MOVEMENT_DEFAULT_GREEN_COLOR 0xF #define MOVEMENT_DEFAULT_BLUE_COLOR 0x0 @@ -94,11 +94,12 @@ const watch_face_t watch_faces[] = { /* Set the led duration * Valid values are: * 0: No LED - * 1: 1 second - * 2: 3 seconds - * 3: 5 seconds + * 1: Momentary + * 2: 1 second + * 3: 3 seconds + * 4: 5 seconds */ -#define MOVEMENT_DEFAULT_LED_DURATION 2 +#define MOVEMENT_DEFAULT_LED_DURATION 1 /* Optionally debounce button presses (disable by default). * A value of 4 is a good starting point if you have issues -- 2.39.5