diff options
author | peepeetee <43021794+peepeetee@users.noreply.github.com> | 2022-04-19 18:17:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-19 20:17:21 +1000 |
commit | 9f63bce70bd8e065e54de17c48994c3c008d2e0a (patch) | |
tree | 580aa20cd65eabf721603f03cb3d2815a1245c13 /keyboards/honeycomb/honeycomb.h | |
parent | cff489bfdb2752956292c1e9adf1b4223814c267 (diff) | |
download | qmk_firmware-9f63bce70bd8e065e54de17c48994c3c008d2e0a.tar.gz qmk_firmware-9f63bce70bd8e065e54de17c48994c3c008d2e0a.zip |
move keyhive exclusive boards into /keyhive (#16084)
Co-authored-by: Nick Brassel <nick@tzarc.org>
Diffstat (limited to 'keyboards/honeycomb/honeycomb.h')
-rwxr-xr-x | keyboards/honeycomb/honeycomb.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/keyboards/honeycomb/honeycomb.h b/keyboards/honeycomb/honeycomb.h deleted file mode 100755 index ec54b59f20..0000000000 --- a/keyboards/honeycomb/honeycomb.h +++ /dev/null @@ -1,32 +0,0 @@ -#pragma once - -#include "quantum.h" - -#define RED_LED_OFF() writePinHigh(F6) -#define RED_LED_ON() writePinLow(F6) -#define BLU_LED_OFF() writePinHigh(F5) -#define BLU_LED_ON() writePinLow(F5) -#define GRN_LED_OFF() writePinHigh(D1) -#define GRN_LED_ON() writePinLow(D1) - -#define SET_LED_OFF (RED_LED_OFF(); GRN_LED_OFF(); BLU_LED_OFF(); ) -#define SET_LED_RED (RED_LED_ON(); GRN_LED_OFF(); BLU_LED_OFF(); ) -#define SET_LED_BLUE (RED_LED_OFF(); GRN_LED_OFF(); BLU_LED_ON(); ) -#define SET_LED_GREEN (RED_LED_OFF(); GRN_LED_ON(); BLU_LED_OFF(); ) -#define SET_LED_YELLOW (RED_LED_ON(); GRN_LED_ON(); BLU_LED_OFF(); ) -#define SET_LED_MAGENTA (RED_LED_ON(); GRN_LED_OFF(); BLU_LED_ON(); ) -#define SET_LED_CYAN (RED_LED_OFF(); GRN_LED_ON(); BLU_LED_ON(); ) -#define SET_LED_WHITE (RED_LED_ON(); GRN_LED_ON(); BLU_LED_ON(); ) - -// This a shortcut to help you visually see your layout. -// The first section contains all of the arguements -// The second converts the arguments into a two-dimensional array -#define LAYOUT( \ - k13, k14, k15, k16, \ - k09, k10, k11, k12, \ - k05, k06, k07, k08, \ - k01, k02, k03, k04 \ -) \ -{ \ - { k01, k02, k03, k04, k05, k06, k07, k08, k09, k10, k11, k12, k13, k14, k15, k16 } \ -} |