diff options
author | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2020-01-21 13:26:01 -0800 |
---|---|---|
committer | James Young <18669334+noroadsleft@users.noreply.github.com> | 2020-01-21 13:26:00 -0800 |
commit | 9b6b54cdaae43e976ea4a5e5d01ec25309c7496b (patch) | |
tree | 7bf3c1e8d4776bc77cb0045cf36e888565d5ed60 /keyboards/gray_studio/think65/solder/solder.c | |
parent | 37db6012a7f6828c23b42587ca9d0a4f5d73ff35 (diff) |
[Keyboard] Think 6.5 Soldered Matrix Fix (#7952)
* both backspace and left shift matrix positions off by one
* update the led_update routine
* update readme
* Update keyboards/gray_studio/think65/solder/solder.c
Diffstat (limited to 'keyboards/gray_studio/think65/solder/solder.c')
-rw-r--r-- | keyboards/gray_studio/think65/solder/solder.c | 22 |
1 files changed, 4 insertions, 18 deletions
diff --git a/keyboards/gray_studio/think65/solder/solder.c b/keyboards/gray_studio/think65/solder/solder.c index 4f40fb4a92..48ed25b19b 100644 --- a/keyboards/gray_studio/think65/solder/solder.c +++ b/keyboards/gray_studio/think65/solder/solder.c @@ -25,17 +25,9 @@ void matrix_init_kb(void) { // runs once when the firmware starts up setPinOutput(C7); - matrix_init_user(); } -void matrix_scan_kb(void) { - // put your looping keyboard code here - // runs every cycle (a lot) - - matrix_scan_user(); -} - bool process_record_kb(uint16_t keycode, keyrecord_t *record) { // put your per-action keyboard code here // runs for every action, just before processing by the firmware @@ -43,15 +35,9 @@ bool process_record_kb(uint16_t keycode, keyrecord_t *record) { return process_record_user(keycode, record); } -void led_set_kb(uint8_t usb_led) { - // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here - - if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) { - writePinLow(C7); - } else { - writePinHigh(C7); +bool led_update_kb(led_t led_state) { + if(led_update_user(led_state)) { + writePin(C7, !led_state.caps_lock); } - - led_set_user(usb_led); + return true; } - |