Browse Source

Fix for RGB color override and brightness for EC Type K (#23703)

Fix for RGB color override and brightness
Cipulot 2 years ago
parent
commit
fcbbaf4485

+ 1 - 1
keyboards/cipulot/ec_typek/config.h

@@ -73,7 +73,7 @@
 #define WS2812_DMA_CHANNEL 6
 #define WS2812_DMAMUX_ID STM32_DMAMUX1_TIM1_UP
 
-#define RGBLIGHT_DEFAULT_VAL 200
+#define RGBLIGHT_DEFAULT_VAL 175
 #define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_MODE_RAINBOW_SWIRL + 5)
 
 #define NUM_INDICATOR_INDEX 2

+ 5 - 4
keyboards/cipulot/ec_typek/ec_typek.c

@@ -35,8 +35,8 @@ void eeconfig_init_kb(void) {
     eeprom_ec_config.mode_0_actuation_threshold     = DEFAULT_MODE_0_ACTUATION_LEVEL;
     eeprom_ec_config.mode_0_release_threshold       = DEFAULT_MODE_0_RELEASE_LEVEL;
     eeprom_ec_config.mode_1_initial_deadzone_offset = DEFAULT_MODE_1_INITIAL_DEADZONE_OFFSET;
-    eeprom_ec_config.mode_1_actuation_offset   = DEFAULT_MODE_1_ACTUATION_OFFSET;
-    eeprom_ec_config.mode_1_release_offset     = DEFAULT_MODE_1_RELEASE_OFFSET;
+    eeprom_ec_config.mode_1_actuation_offset        = DEFAULT_MODE_1_ACTUATION_OFFSET;
+    eeprom_ec_config.mode_1_release_offset          = DEFAULT_MODE_1_RELEASE_OFFSET;
 
     for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
         for (uint8_t col = 0; col < MATRIX_COLS; col++) {
@@ -59,8 +59,8 @@ void keyboard_post_init_kb(void) {
     ec_config.mode_0_actuation_threshold     = eeprom_ec_config.mode_0_actuation_threshold;
     ec_config.mode_0_release_threshold       = eeprom_ec_config.mode_0_release_threshold;
     ec_config.mode_1_initial_deadzone_offset = eeprom_ec_config.mode_1_initial_deadzone_offset;
-    ec_config.mode_1_actuation_offset   = eeprom_ec_config.mode_1_actuation_offset;
-    ec_config.mode_1_release_offset     = eeprom_ec_config.mode_1_release_offset;
+    ec_config.mode_1_actuation_offset        = eeprom_ec_config.mode_1_actuation_offset;
+    ec_config.mode_1_release_offset          = eeprom_ec_config.mode_1_release_offset;
     ec_config.bottoming_calibration          = false;
     for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
         for (uint8_t col = 0; col < MATRIX_COLS; col++) {
@@ -115,5 +115,6 @@ bool indicators_callback(void) {
     else
         sethsv(0, 0, 0, (rgb_led_t *)&led[SCROLL_INDICATOR_INDEX]);
 
+    rgblight_set();
     return true;
 }

+ 1 - 1
keyboards/cipulot/ec_typek/info.json

@@ -42,7 +42,7 @@
         },
         "led_count": 69,
         "led_map": [0, 1, 2, 3, 4, 5, 66, 67, 68, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65],
-        "max_brightness": 200
+        "max_brightness": 175
     },
     "usb": {
         "device_version": "0.0.1",