summaryrefslogtreecommitdiff
path: root/keyboards/atom47/keymaps/LEdiodes/keymap.c
diff options
context:
space:
mode:
authorLEdiodes <mkerfoot@users.noreply.github.com>2018-01-28 14:58:42 -0600
committerJack Humbert <jack.humb@gmail.com>2018-01-28 15:58:42 -0500
commitb0805e38b9389ff79e4ba9b4e35ec08b18f7a728 (patch)
treeeea78e228def2e0ff43d097e7ff8f6910b9236cf /keyboards/atom47/keymaps/LEdiodes/keymap.c
parent2480e5d69a11fd0774d16e57384b69c1e92cbfc8 (diff)
added ATOM47 (Vortex Core QMK powered PCB) & DZ60 Custom config(LEdiodes) (#2310)
* added ATOM47 (Vortex Core QMK powered PCB) * fixed broken\unfinished comment block * moved Layer template to default template. * moved Layer template to default template and removed template from the keymap.c file. * Added LEdiodes config * created readme.md contains an image of 60% board(LEdiodes). * updated readme.md with images added images of the PCB and some feature details from https://geekhack.org/index.php?topic=93447.msg2545221#msg2545221 * removed excess words. * followed the readme template to a T. * formatting fix : added a return.
Diffstat (limited to 'keyboards/atom47/keymaps/LEdiodes/keymap.c')
-rw-r--r--keyboards/atom47/keymaps/LEdiodes/keymap.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/keyboards/atom47/keymaps/LEdiodes/keymap.c b/keyboards/atom47/keymaps/LEdiodes/keymap.c
new file mode 100644
index 0000000000..3ea8609b61
--- /dev/null
+++ b/keyboards/atom47/keymaps/LEdiodes/keymap.c
@@ -0,0 +1,35 @@
+#include QMK_KEYBOARD_H
+
+// These are all aliases for the function layers.
+#define _L0 0
+#define _L1 1
+#define _L2 2
+#define _L3 3
+
+#define _______ KC_TRNS
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+[_L0] = KEYMAP_ANSI(
+ KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL, KC_BSPC, \
+ KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT, \
+ KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_RSFT, MO(_L1), \
+ KC_LCTL, KC_LGUI, KC_LALT, TG(_L3), KC_SPC, KC_SPC, MO(_L2), KC_RALT, KC_APP, KC_RCTRL), \
+
+[_L2] = KEYMAP_ANSI(
+ _______, KC_VOLD, KC_VOLU, KC_MUTE, RESET, _______, KC_CALC, KC_PGUP, KC_UP, KC_PGDN, KC_PSCR, KC_SLCK, KC_PAUS, \
+ KC_CAPS, KC_MPRV, KC_MPLY, KC_MNXT, _______, _______, KC_HOME, KC_LEFT, KC_DOWN, KC_RIGHT, KC_INS, _______, \
+ _______, _______, _______, _______, _______, _______, _______, BL_TOGG, BL_DEC, BL_INC, _______, _______, \
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______), \
+
+[_L1] = KEYMAP_ANSI(
+ KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, \
+ KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, \
+ _______, _______, _______, _______, _______, KC_QUOT, KC_SLSH, KC_LBRC, KC_RBRC, KC_BSLS, KC_RSFT, _______, \
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______), \
+
+[_L3] = KEYMAP_ANSI(
+ _______, _______, _______, KC_7, KC_8, KC_9, _______, _______, _______, _______, _______, _______, _______, \
+ _______, _______, _______, KC_4, KC_5, KC_6, _______, _______, _______, _______, _______, _______, \
+ _______, _______, _______, KC_1, KC_2, KC_3, _______, _______, _______, _______, _______, _______, \
+ _______, _______, _______, _______, KC_0, KC_DOT, _______, _______, _______, RESET), \
+};