summaryrefslogtreecommitdiff
path: root/keyboards/do60/do60.c
diff options
context:
space:
mode:
authorMechMerlin <30334081+mechmerlin@users.noreply.github.com>2020-07-23 20:17:38 -0700
committerGitHub <noreply@github.com>2020-07-23 20:17:38 -0700
commit2cebac6f2f7f5a49adf7f2ce8a94c8ba1dbef707 (patch)
tree7e68356fadbb097569db90a1859c04f0294b3836 /keyboards/do60/do60.c
parenta50c0049f68f666d1fe49d895743b27d1036ccb3 (diff)
[Keyboard] VIA Support: DO60 (#9622)
* fix up that vendor ID * add a VIA enabled keymap * use pragma once * clean up indicator leds code * remove unused header
Diffstat (limited to 'keyboards/do60/do60.c')
-rw-r--r--keyboards/do60/do60.c37
1 files changed, 7 insertions, 30 deletions
diff --git a/keyboards/do60/do60.c b/keyboards/do60/do60.c
index c1e509c5db..3dba9b5359 100644
--- a/keyboards/do60/do60.c
+++ b/keyboards/do60/do60.c
@@ -1,11 +1,4 @@
#include "do60.h"
-#include "led.h"
-
-//extern inline void do60_caps_led_on(void);
-//extern inline void do60_bl_led_on(void);
-
-//extern inline void do60_caps_led_off(void);
-//extern inline void do60_bl_led_off(void);
extern inline void setdefaultrgb(void);
@@ -18,33 +11,17 @@ void matrix_init_kb(void) {
setdefaultrgb();
};
-void matrix_scan_kb(void) {
- // Looping keyboard code goes here
- // This runs every cycle (a lot)
- matrix_scan_user();
-};
-
void led_init_ports(void) {
// Set caps lock LED pin as output
- DDRB |= (1 << 2);
+ setPinOutput(B2);
// Default to off
- PORTB |= (1 << 2);
+ writePinHigh(B2);
}
-void led_set_kb(uint8_t usb_led) {
- //if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
- // do60_caps_led_on();
- //} else {
- // do60_caps_led_off();
- //}
-
- //led_set_user(usb_led);
+bool led_update_kb(led_t led_state) {
+ if(led_update_user(led_state)) {
+ writePin(B2, !led_state.caps_lock);
+ }
- if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
- // Turn capslock on
- PORTB &= ~(1<<2);
- } else {
- // Turn capslock off
- PORTB |= (1<<2);
- }
+ return true;
}