summaryrefslogtreecommitdiffstats
path: root/keyboards/puck/puck.h
blob: 0f2a284a67f80442116df006e1ad52b54e5b0657 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef PUCK_H
#define PUCK_H

#include "quantum.h"

#define LAYOUT( \
    K00, K01, K02, \
    K03, K04, K05, \
    K06, K07, K08, \
    K09, K0A, K0B  \
) { \
    { K00, K01, K02 }, \
    { K03, K04, K05 }, \
    { K06, K07, K08 }, \
    { K09, K0A, K0B }, \
}

#endif