From 27f0c629d865f4bc56bc6e678da1eb8f4b919093 Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Mon, 12 May 2025 22:36:30 -0400 Subject: [PATCH] clock-face: adjust low battery threshold --- watch-faces/clock/clock_face.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/watch-faces/clock/clock_face.c b/watch-faces/clock/clock_face.c index ca56ece9..1a1f3b8e 100644 --- a/watch-faces/clock/clock_face.c +++ b/watch-faces/clock/clock_face.c @@ -36,10 +36,10 @@ #include "watch_utility.h" #include "watch_common_display.h" -// 2.2 volts will happen when the battery has maybe 5-10% remaining? -// we can refine this later. +// 2.4 volts seems to offer adequate warning of a low battery condition? +// refined based on user reports and personal observations; may need further adjustment. #ifndef CLOCK_FACE_LOW_BATTERY_VOLTAGE_THRESHOLD -#define CLOCK_FACE_LOW_BATTERY_VOLTAGE_THRESHOLD 2200 +#define CLOCK_FACE_LOW_BATTERY_VOLTAGE_THRESHOLD 2400 #endif typedef struct {