From: joeycastillo Date: Sat, 19 Oct 2024 19:43:53 +0000 (-0400) Subject: classic LCD was looking a bit dim X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=1e359c0f7c59d4747ba94ea837410faae51b055c;p=sensor-watch.git classic LCD was looking a bit dim --- diff --git a/watch-library/hardware/watch/watch_slcd.c b/watch-library/hardware/watch/watch_slcd.c index 18f4efc..04895f4 100644 --- a/watch-library/hardware/watch/watch_slcd.c +++ b/watch-library/hardware/watch/watch_slcd.c @@ -77,7 +77,11 @@ void watch_enable_display(void) { _slcd_fc_min_ms_bypass = 32 * (1000 / _slcd_framerate); slcd_clear(); +#ifdef USE_CUSTOM_LCD slcd_set_contrast(6); +#else + slcd_set_contrast(9); +#endif slcd_enable(); }