]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/handwired/dactyl_manuform/5x6/5x6.c
[fortitude60] match default keymap comment to the implementation. (#4508)
[qmk_firmware.git] / keyboards / handwired / dactyl_manuform / 5x6 / 5x6.c
1 #include "5x6.h"
2
3
4 #ifdef SSD1306OLED
5 void led_set_kb(uint8_t usb_led) {
6     // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
7     led_set_user(usb_led);
8 }
9 #endif
10
11 void matrix_init_kb(void) {
12
13     // // green led on
14     // DDRD |= (1<<5);
15     // PORTD &= ~(1<<5);
16
17     // // orange led on
18     // DDRB |= (1<<0);
19     // PORTB &= ~(1<<0);
20
21         matrix_init_user();
22 };
23