aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXyverz <xyverz@gmail.com>2016-08-19 22:45:20 -0700
committerXyverz <xyverz@gmail.com>2016-08-19 22:45:20 -0700
commite4984f65decbd005d147d29b56d7a0c7d7a8dafd (patch)
treea9cd2638d0d65fae8dcf3bb231ecef7a76ec576f
parentaff792545d70fbf281e64757b74d0ed776187bb2 (diff)
downloadqmk_firmware-e4984f65decbd005d147d29b56d7a0c7d7a8dafd.tar.gz
qmk_firmware-e4984f65decbd005d147d29b56d7a0c7d7a8dafd.zip
Changed the Ergodox keymap to use the KEYMAP() macro, updated readme.md.
-rw-r--r--keyboards/ergodox/keymaps/xyverz/keymap.c13
-rw-r--r--keyboards/ergodox/keymaps/xyverz/readme.md14
2 files changed, 10 insertions, 17 deletions
diff --git a/keyboards/ergodox/keymaps/xyverz/keymap.c b/keyboards/ergodox/keymaps/xyverz/keymap.c
index 5927de33f..08ee5aeda 100644
--- a/keyboards/ergodox/keymaps/xyverz/keymap.c
+++ b/keyboards/ergodox/keymaps/xyverz/keymap.c
@@ -1,8 +1,4 @@
1/* 1/*
2 * PLEASE NOTE: This keymap has been updated to work with the Infinity ErgoDox. To build for the Infinity,
3 * simply append `SUBPROJECT=infinity` to the end of your `make` statement. This keymap file is untested
4 * on the Infinity ErgoDox.
5 *
6 * About this keymap: 2 * About this keymap:
7 * 3 *
8 * The Dvorak layout shown herestems from my early Kinesis years, using the Contour PS/2 with a Dvorak 4 * The Dvorak layout shown herestems from my early Kinesis years, using the Contour PS/2 with a Dvorak
@@ -14,9 +10,6 @@
14 * 10 *
15 * I've enabled persistent keymaps for Qwerty, Dvorak and Colemak layers, similar to the default Planck 11 * I've enabled persistent keymaps for Qwerty, Dvorak and Colemak layers, similar to the default Planck
16 * layouts. 12 * layouts.
17 *
18 * For a better explanation of the layout matrices shown below, take a look at ../../ez/ez.h where the
19 * keymap is defined, beginning on line 81.
20 * 13 *
21 */ 14 */
22 15
@@ -197,7 +190,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
197 RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F11, 190 RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F11,
198 _______, _______, KC_PSCR, KC_SLCK, KC_PAUS, _______, _______, 191 _______, _______, KC_PSCR, KC_SLCK, KC_PAUS, _______, _______,
199 _______, _______, _______, _______, _______, _______, 192 _______, _______, _______, _______, _______, _______,
200 _______, _______, _______, _______, _______, _______, _______, 193 _______, _______, DVORAK, QWERTY, COLEMAK, _______, _______,
201 _______, _______, _______, _______, _______, 194 _______, _______, _______, _______, _______,
202 _______, _______, 195 _______, _______,
203 _______, 196 _______,
@@ -224,7 +217,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
224 * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------| 217 * |--------+------+------+------+------+------| | | |------+------+------+------+------+--------|
225 * | | | | | | | | | | | KP 1 | KP 2 | KP 3 |KP Ent| | 218 * | | | | | | | | | | | KP 1 | KP 2 | KP 3 |KP Ent| |
226 * `--------+------+------+------+------+-------------' `-------------+------+------+------+------+--------' 219 * `--------+------+------+------+------+-------------' `-------------+------+------+------+------+--------'
227 * | | | | | | | KP 0 | | |KP Ent| | 220 * | | | | | | | KP 0 | | KP . |KP Ent| |
228 * `----------------------------------' `----------------------------------' 221 * `----------------------------------' `----------------------------------'
229 * ,-------------. ,-------------. 222 * ,-------------. ,-------------.
230 * | | | | | | 223 * | | | | | |
@@ -249,7 +242,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
249 _______, _______, KC_P7, KC_P8, KC_P9, KC_PMNS, _______, 242 _______, _______, KC_P7, KC_P8, KC_P9, KC_PMNS, _______,
250 _______, KC_P4, KC_P5, KC_P6, KC_PPLS, _______, 243 _______, KC_P4, KC_P5, KC_P6, KC_PPLS, _______,
251 _______, _______, KC_P1, KC_P2, KC_P3, KC_PENT, _______, 244 _______, _______, KC_P1, KC_P2, KC_P3, KC_PENT, _______,
252 _______, _______, _______, _______, _______, 245 KC_P0, _______, KC_PDOT, KC_PENT, _______,
253 _______, _______, 246 _______, _______,
254 _______, 247 _______,
255 _______, _______, _______ 248 _______, _______, _______
diff --git a/keyboards/ergodox/keymaps/xyverz/readme.md b/keyboards/ergodox/keymaps/xyverz/readme.md
index e6cb582c5..6ecdabc9e 100644
--- a/keyboards/ergodox/keymaps/xyverz/readme.md
+++ b/keyboards/ergodox/keymaps/xyverz/readme.md
@@ -1,9 +1,5 @@
1# Xyverz's ErgoDox EZ Keymap 1# Xyverz's ErgoDox EZ Keymap
2 2
3## Please Note:
4
5This keymap has been updated to work with the Infinity ErgoDox. To build for the Infinity, simply append `SUBPROJECT=infinity` to the end of your `make` statement. This keymap file builds cleanly as is but as of this writing has not been tested on the Infinity ErgoDox. YMMV.
6
7## About this keymap: 3## About this keymap:
8 4
9The Dvorak layout shown herestems from my early Kinesis years, using the Contour PS/2 with a Dvorak software layout. Because of this, the RBRC and LBRC were on opposite sides of the board in the corner keys. I've decided to continue using this layout with my ErgoDox. 5The Dvorak layout shown herestems from my early Kinesis years, using the Contour PS/2 with a Dvorak software layout. Because of this, the RBRC and LBRC were on opposite sides of the board in the corner keys. I've decided to continue using this layout with my ErgoDox.
@@ -12,7 +8,11 @@ The QWERTY layout shown here is based entirely on the Kinesis Advantage layout,
12 8
13I've enabled persistent keymaps for Qwerty, Dvorak and Colemak layers, similar to the default Planck layouts. 9I've enabled persistent keymaps for Qwerty, Dvorak and Colemak layers, similar to the default Planck layouts.
14 10
15For a better explanation of the layout matrices shown below, take a look at ../../ez/ez.h where the keymap is defined beginning on line 81, or in ../../infinity/infinity.h beginning at line 72. 11## Still to do:
12
13 * Need to figure out a better position for the ESC key.
14 * Come up with a function for the empty keys shown in the alpha layers below.
15 * Fix the CapsLock, NumLock, and ScrLck LEDs.
16 16
17### Layer 0: Dvorak layer 17### Layer 0: Dvorak layer
18 18
@@ -103,9 +103,9 @@ For a better explanation of the layout matrices shown below, take a look at ../.
103### Keymap 4: Keypad layer 103### Keymap 4: Keypad layer
104 104
105 ,--------------------------------------------------.,--------------------------------------------------. 105 ,--------------------------------------------------.,--------------------------------------------------.
106 | Power | | | | | | || | | NmLk | KP / | KP * | KP - | | 106 | Power | | | | | | || | | NmLk | KP = | KP / | KP * | |
107 |--------+------+------+------+------+-------------||------+------+------+------+------+------+--------| 107 |--------+------+------+------+------+-------------||------+------+------+------+------+------+--------|
108 | Sleep | | | | | | || | | KP 7 | KP 8 | KP 9 | KP + | | 108 | Sleep | | | | | | || | | KP 7 | KP 8 | KP 9 | KP - | |
109 |--------+------+------+------+------+------| || |------+------+------+------+------+--------| 109 |--------+------+------+------+------+------| || |------+------+------+------+------+--------|
110 | Wake | | | | | |------||------| | KP 4 | KP 5 | KP 6 | KP + | | 110 | Wake | | | | | |------||------| | KP 4 | KP 5 | KP 6 | KP + | |
111 |--------+------+------+------+------+------| || |------+------+------+------+------+--------| 111 |--------+------+------+------+------+------| || |------+------+------+------+------+--------|