]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/handwired/dactyl_manuform/4x5/dactyl_manuform.c
Keyboard: Dactyl manuform 5x6 added and working (#3627)
[qmk_firmware.git] / keyboards / handwired / dactyl_manuform / 4x5 / dactyl_manuform.c
1 #include "dactyl_manuform.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