]> git.earman.xyz Git - sensor-watch.git/commitdiff
classic LCD was looking a bit dim
authorjoeycastillo <joeycastillo@utexas.edu>
Sat, 19 Oct 2024 19:43:53 +0000 (15:43 -0400)
committerjoeycastillo <joeycastillo@utexas.edu>
Sat, 19 Oct 2024 19:43:53 +0000 (15:43 -0400)
watch-library/hardware/watch/watch_slcd.c

index 18f4efc58c6a7d9de8631dc8e3e68ec2f4eef638..04895f472c5a7ec1f698544c117709fbf5dcdbec 100644 (file)
@@ -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();
 }