mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-11-24 01:17:07 +06:00
fd48f687b1
* Added initial files for the Adron 3-key macro pad * Refactor of "adron_pad" to "ivy", cleaned up the readme and removed un-needed keymap as well. * Made suggested changes to commit for PR * Removed unneeded define block from SUBPROJECT_rev1 as it is redundant (Thanks drashna ;) )
15 lines
174 B
C
15 lines
174 B
C
#pragma once
|
|
|
|
#include "ivy.h"
|
|
|
|
#define LAYOUT( \
|
|
K00, \
|
|
K01, \
|
|
K02 \
|
|
) \
|
|
{ \
|
|
{ K00, KC_NO, KC_NO }, \
|
|
{ KC_NO, K01, KC_NO }, \
|
|
{ KC_NO, KC_NO, K02 }, \
|
|
}
|