summaryrefslogtreecommitdiffstats
path: root/keyboards/levinson/keymaps
diff options
context:
space:
mode:
authorHarley Laue <losinggeneration@gmail.com>2017-10-07 01:32:02 +0200
committerJack Humbert <jack.humb@gmail.com>2018-02-04 19:40:22 +0100
commitac82cd1ba77f4ed8d38f17662864c6a56a8da293 (patch)
treefdfe231bb612ccda84ab414ac587efcf5f9792db /keyboards/levinson/keymaps
parent31f52291911e0e2d4a3626ceb5fad52657bb495f (diff)
downloadqmk_firmware-ac82cd1ba77f4ed8d38f17662864c6a56a8da293.tar.gz
qmk_firmware-ac82cd1ba77f4ed8d38f17662864c6a56a8da293.tar.xz
Added personal nyquist & levinson layouts
Diffstat (limited to 'keyboards/levinson/keymaps')
-rw-r--r--keyboards/levinson/keymaps/losinggeneration/README.md28
-rw-r--r--keyboards/levinson/keymaps/losinggeneration/config.h42
-rw-r--r--keyboards/levinson/keymaps/losinggeneration/keymap.c38
-rw-r--r--keyboards/levinson/keymaps/losinggeneration/rules.mk17
4 files changed, 125 insertions, 0 deletions
diff --git a/keyboards/levinson/keymaps/losinggeneration/README.md b/keyboards/levinson/keymaps/losinggeneration/README.md
new file mode 100644
index 000000000..b406d5000
--- /dev/null
+++ b/keyboards/levinson/keymaps/losinggeneration/README.md
@@ -0,0 +1,28 @@
+losinggeneration's Levinson Layout
+============================
+
+See description of the layout in the common folder
+[here](../../../../users/losinggeneration/README.md)
+
+## Features
+- Adjust
+ - Removed AGSwap, AGNorm, & Del
+ - Added Caps Lock, F1-F12 in a 4x3 grid, backlight control, arrow cluster,
+ and layer transitions to the new layers.
+ - Moved Reset & Audio control to the right side
+
+## Layouts
+
+### Adjust (Lower + Raise)
+
+```
+ ,-----------------------------------------..-----------------------------------------.
+ | | F1 | F2 | F3 | F4 |BL Off|| RESET| Game |Numpad|Mouse | | |
+ |------+------+------+------+------+------||------+------+------+------+------+------|
+ | | F5 | F6 | F7 | F8 |BL Tg ||Aud on|Qwerty|Colmak|Workmn|Dvorak| |
+ |------+------+------+------+------+------||------+------+------+------+------+------|
+ | CAPS | F9 | F10 | F11 | F12 |BL On ||Audoff| | | | Up | |
+ |------+------+------+------+------+------||------+------+------+------+------+------|
+ | | | | | | || | | XXX | Left | Down |Right |
+ `-----------------------------------------''-----------------------------------------'
+```
diff --git a/keyboards/levinson/keymaps/losinggeneration/config.h b/keyboards/levinson/keymaps/losinggeneration/config.h
new file mode 100644
index 000000000..917c6a98b
--- /dev/null
+++ b/keyboards/levinson/keymaps/losinggeneration/config.h
@@ -0,0 +1,42 @@
+/*
+Copyright 2017 Danny Nguyen <danny@hexwire.com>
+Copyright 2018 Harley Laue <losinggeneration@gmail.com>
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+long with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef CONFIG_USER_H
+#define CONFIG_USER_H
+
+#include QMK_KEYBOARD_CONFIG_H
+
+/* Use I2C or Serial, not both */
+
+#define USE_SERIAL
+/* #define USE_I2C */
+
+/* Select hand configuration */
+
+#define MASTER_LEFT
+/* #define _MASTER_RIGHT */
+/* #define EE_HANDS */
+
+#undef RGBLED_NUM
+#define RGBLIGHT_ANIMATIONS
+#define RGBLED_NUM 12
+#define RGBLIGHT_HUE_STEP 8
+#define RGBLIGHT_SAT_STEP 8
+#define RGBLIGHT_VAL_STEP 8
+
+#endif
diff --git a/keyboards/levinson/keymaps/losinggeneration/keymap.c b/keyboards/levinson/keymaps/losinggeneration/keymap.c
new file mode 100644
index 000000000..3512f59f1
--- /dev/null
+++ b/keyboards/levinson/keymaps/losinggeneration/keymap.c
@@ -0,0 +1,38 @@
+#include QMK_KEYBOARD_H
+#include "losinggeneration-config.h"
+#include "losinggeneration-keymap.h"
+
+extern keymap_config_t keymap_config;
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+
+[_QWERTY] = CATMAP( QWERTY_LAYER ),
+[_COLEMAK] = CATMAP( COLEMAK_LAYER ),
+[_WORKMAN] = CATMAP( WORKMAN_LAYER ),
+[_DVORAK] = CATMAP( DVORAK_LAYER ),
+[_GAME] = CATMAP( GAME_LAYER ),
+[_NUMPAD] = CATMAP( NUMPAD_LAYER ),
+[_MOUSE] = CATMAP( MOUSE_LAYER ),
+[_LOWER] = CATMAP( LOWER_LAYER ),
+[_RAISE] = CATMAP( RAISE_LAYER ),
+
+/* Adjust (Lower + Raise)
+ * ,-----------------------------------------..-----------------------------------------.
+ * | | F1 | F2 | F3 | F4 |BL Off|| RESET| Game |Numpad|Mouse | | |
+ * |------+------+------+------+------+------||------+------+------+------+------+------|
+ * | | F5 | F6 | F7 | F8 |BL Tg ||Aud on|Qwerty|Colmak|Workmn|Dvorak| |
+ * |------+------+------+------+------+------||------+------+------+------+------+------|
+ * | CAPS | F9 | F10 | F11 | F12 |BL On ||Audoff| | | | Up | |
+ * |------+------+------+------+------+------||------+------+------+------+------+------|
+ * | | | | | | || | | XXX | Left | Down |Right |
+ * `-----------------------------------------''-----------------------------------------'
+ */
+[_ADJUST] = CATMAP( \
+ _______, KC_F1 , KC_F2 , KC_F3 , KC_F4 , BL_OFF , RESET , TO_GAME, TO_NUM , TO_MS , _______, _______, \
+ _______, KC_F5 , KC_F6 , KC_F7 , KC_F8 , BL_TOGG, AU_ON , QWERTY , COLEMAK, WORKMAN, DVORAK , _______, \
+ KC_CAPS, KC_F9 , KC_F10, KC_F11 , KC_F12 , BL_ON , AU_OFF , _______, _______, _______, KC_UP , _______, \
+ _______, _______, _______, _______, _______, _______, _______, _______, XXXXXXX, KC_LEFT, KC_DOWN, KC_RGHT \
+)
+
+};
+
diff --git a/keyboards/levinson/keymaps/losinggeneration/rules.mk b/keyboards/levinson/keymaps/losinggeneration/rules.mk
new file mode 100644
index 000000000..f3e47b4c2
--- /dev/null
+++ b/keyboards/levinson/keymaps/losinggeneration/rules.mk
@@ -0,0 +1,17 @@
+# Build Options
+# change to "no" to disable the options, or define them in the Makefile in
+# the appropriate keymap folder that will get included automatically
+#
+AUDIO_ENABLE = no # Audio output on port C6
+BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
+BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
+BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
+COMMAND_ENABLE = no # Commands for debug and configuration
+CONSOLE_ENABLE = no # Console for debug(+400)
+MIDI_ENABLE = no # MIDI controls
+NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
+RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. Do not enable this with audio at the same time.
+
+ifndef QUANTUM_DIR
+ include ../../../../Makefile
+endif