]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/sixkeyboard/sixkeyboard.c
[Keymap] Add missing tap dance action and fix RGB hues in personal keymaps (#6312)
[qmk_firmware.git] / keyboards / sixkeyboard / sixkeyboard.c
1 #include "sixkeyboard.h"
2
3 void matrix_init_kb(void) {
4     // put your keyboard start-up code here
5     // runs once when the firmware starts up
6
7     DDRC |= (1<<4);
8     PORTC &= ~(1<<4);
9
10
11     DDRC |= (1<<6);
12     PORTC &= ~(1<<6);
13
14     DDRB |= (1<<6);
15     PORTB &= ~(1<<6);
16
17     DDRB |= (1<<4);
18     PORTB &= ~(1<<4);
19
20     DDRD |= (1<<5);
21     PORTD &= ~(1<<5);
22
23     DDRD |= (1<<2);
24     PORTD &= ~(1<<2);
25
26     DDRD |= (1<<3);
27     PORTD &= ~(1<<3);
28
29     matrix_init_user();
30 };