]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/frosty_flake/frosty_flake.h
boilerplate project created with new_project.sh
[qmk_firmware.git] / keyboards / frosty_flake / frosty_flake.h
1 #ifndef FROSTY_FLAKE_H
2 #define FROSTY_FLAKE_H
3
4 #include "quantum.h"
5
6 // This a shortcut to help you visually see your layout.
7 // The following is an example using the Planck MIT layout
8 // The first section contains all of the arguements
9 // The second converts the arguments into a two-dimensional array
10 #define KEYMAP( \
11     k00, k01, k02, \
12       k10,  k11   \
13 ) \
14 { \
15     { k00, k01,   k02 }, \
16     { k10, KC_NO, k11 }, \
17 }
18
19 #endif