diff options
author | x1 <viva008@gmail.com> | 2019-08-07 02:14:40 +0900 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-08-06 10:14:40 -0700 |
commit | 9587fac72a749e07bcdede40f8059df77a04a3e4 (patch) | |
tree | 1a9c4df581f33464e241366d92b1df897bc5927a /keyboards/kudox/rev1/rev1.c | |
parent | e5831d79c044f394243cfdfe604b91837067b7d6 (diff) |
[Keyboard] Add kudox keyboard (#6459)
* Add Kudox Keyboard profile.
* Modified info.json and image link on readme.
* Remove unnecessary codes.
* Set BootLoader caterina.
* Remove duplicated settings on rules.mk.
* Clean up config.h.
* Modified include header path.
* Modified info.json to adjust 4th row keys y position.
* Separate default keymap and my keymap.
* Modified RGB_LED_* settings on kudox/rev1/config.h.
Diffstat (limited to 'keyboards/kudox/rev1/rev1.c')
-rw-r--r-- | keyboards/kudox/rev1/rev1.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/keyboards/kudox/rev1/rev1.c b/keyboards/kudox/rev1/rev1.c new file mode 100644 index 0000000000..3b39ee764d --- /dev/null +++ b/keyboards/kudox/rev1/rev1.c @@ -0,0 +1,22 @@ +#include "kudox.h" + + +#ifdef SSD1306OLED +void led_set_kb(uint8_t usb_led) { + // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here + led_set_user(usb_led); +} +#endif + +void matrix_init_kb(void) { + + // // green led on + // DDRD |= (1<<5); + // PORTD &= ~(1<<5); + + // // orange led on + // DDRB |= (1<<0); + // PORTB &= ~(1<<0); + + matrix_init_user(); +}; |