]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/fourier/rev1/rev1.h
Move my keymap to the community folder
[qmk_firmware.git] / keyboards / fourier / rev1 / rev1.h
1 #ifndef REV1_H
2 #define REV1_H
3
4 #include "../fourier.h"
5
6 #include "quantum.h"
7
8
9 #ifdef USE_I2C
10 #include <stddef.h>
11 #ifdef __AVR__
12         #include <avr/io.h>
13         #include <avr/interrupt.h>
14 #endif
15 #endif
16
17 #define LAYOUT( \
18         LA1, LA2, LA3, LA4, LA5, LA6, RA1, RA2, RA3, RA4, RA5, RA6, RA7, \
19         LB1, LB2, LB3, LB4, LB5, LB6, RB1, RB2, RB3, RB4, RB5,      RB7, \
20         LC1, LC2, LC3, LC4, LC5, LC6, RC1,      RC3, RC4, RC5, RC6, RC7, \
21         LD1, LD2, LD3, LD4, LD5,      RD1,           RD4, RD5, RD6, RD7 \
22         ) \
23         { \
24                 { LA1, LA2, LA3, LA4, LA5, LA6, KC_NO}, \
25                 { LB1, LB2, LB3, LB4, LB5, LB6, KC_NO}, \
26                 { LC1, LC2, LC3, LC4, LC5, LC6, KC_NO}, \
27                 { LD1, LD2, LD3, LD4, LD5, KC_NO, KC_NO}, \
28                 { RA1, RA2, RA3, RA4, RA5, RA6, RA7}, \
29                 { RB1, RB2, RB3, RB4, RB5, KC_NO, RB7}, \
30                 { RC1, KC_NO, RC3, RC4, RC5, RC6, RC7}, \
31                 { RD1, KC_NO, KC_NO, RD4, RD5, RD6, RD7} \
32         }
33
34 #endif