From 170194960f8cc0f2cb11430bb6a6ec23f314dd95 Mon Sep 17 00:00:00 2001 From: Mark Date: Thu, 16 Jun 2022 11:26:20 -0700 Subject: [PATCH] Lowered LED brighness --- betalupi_ergodox.c | 1 + config.h | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/betalupi_ergodox.c b/betalupi_ergodox.c index 66ac7af..21f3b43 100644 --- a/betalupi_ergodox.c +++ b/betalupi_ergodox.c @@ -81,6 +81,7 @@ void matrix_init_kb(void) { void ergodox_blink_all_leds(void) { ergodox_led_all_off(); ergodox_led_all_set(LED_BRIGHTNESS_DEFAULT); + ergodox_right_led_1_on(); _delay_ms(50); ergodox_right_led_2_on(); diff --git a/config.h b/config.h index da75975..f06a287 100644 --- a/config.h +++ b/config.h @@ -65,8 +65,8 @@ // Ergodox indicator LEDs -#define LED_BRIGHTNESS_LO 15 -#define LED_BRIGHTNESS_HI 255 +#define LED_BRIGHTNESS_LO 5 +#define LED_BRIGHTNESS_HI 100 #define LED_BRIGHTNESS_DEFAULT (LED_BRIGHTNESS_LO)