aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/obelus/obelus.h
diff options
context:
space:
mode:
authorMechMerlin <30334081+mechmerlin@users.noreply.github.com>2018-05-09 21:37:04 -0700
committerJack Humbert <jack.humb@gmail.com>2018-05-10 00:37:04 -0400
commitc5264d6d89899f19bdeeaf9e2daeb90531617a48 (patch)
tree8f3862554b76a24766df6addfc1009a719d722a8 /keyboards/obelus/obelus.h
parent5346cb2d20100f2bbf35e8c8107ae272404f2198 (diff)
downloadfirmware-c5264d6d89899f19bdeeaf9e2daeb90531617a48.tar.gz
firmware-c5264d6d89899f19bdeeaf9e2daeb90531617a48.tar.bz2
firmware-c5264d6d89899f19bdeeaf9e2daeb90531617a48.zip
Move ckeys workshop to its own directory (#2928)
* move obelus and nakey to ckeys directory * delete the originals * short readme about ckeys * edit readmes to reflect new changes * add build guide info..and here's me trying to retrigger the build job
Diffstat (limited to 'keyboards/obelus/obelus.h')
-rw-r--r--keyboards/obelus/obelus.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/keyboards/obelus/obelus.h b/keyboards/obelus/obelus.h
deleted file mode 100644
index 8444be897..000000000
--- a/keyboards/obelus/obelus.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef OBELUS_H
-#define OBELUS_H
-
-#include "quantum.h"
-
-// This a shortcut to help you visually see your layout.
-// The following is an example using the Planck MIT layout
-// The first section contains all of the arguements
-// The second converts the arguments into a two-dimensional array
-#define KEYMAP( \
- k00, k01, k02, k03, \
- k10, k11, k12, k13, \
- k20, k21, k22, k23, \
- k30, k31, k32, k33 \
-) \
-{ \
- { k00, k01, k02, k03 }, \
- { k10, k11, k12, k13 }, \
- { k20, k21, k22, k23 }, \
- { k30, k31, k32, k33 } \
-}
-
-#endif