Migrate led_update_kb implementations to DD (#23985)

This commit is contained in:
Joel Challis
2024-06-25 03:25:05 +01:00
committed by GitHub
parent 751482580e
commit a2176f6a03
39 changed files with 77 additions and 533 deletions

View File

@@ -74,7 +74,7 @@ void led_keypress_update(pin_t led_pin, uint16_t keycode, keyrecord_t *record) {
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
// Update LED state
led_keypress_update(LED, keycode, record);
led_keypress_update(LED_CAPS_LOCK_PIN, keycode, record);
return true;
}