summaryrefslogtreecommitdiffstats
path: root/keyboards/lets_split
diff options
context:
space:
mode:
authorheartrobotninja <heartrobotninja@users.noreply.github.com>2017-10-21 21:59:31 +0200
committerJack Humbert <jack.humb@gmail.com>2017-10-21 21:59:31 +0200
commitb25338a8098f1b9988707b5c1a6ad8d99f55baf6 (patch)
treef566b9ac2a20db3560398414373e43fc044af0ae /keyboards/lets_split
parent78923cb8843618388408af64c1bfe53f0caf01b6 (diff)
downloadqmk_firmware-b25338a8098f1b9988707b5c1a6ad8d99f55baf6.tar.gz
qmk_firmware-b25338a8098f1b9988707b5c1a6ad8d99f55baf6.tar.xz
heartrobotninja ergodox_ez and lets_split layouts (#1874)
Diffstat (limited to 'keyboards/lets_split')
-rw-r--r--keyboards/lets_split/keymaps/heartrobotninja/config.h58
-rw-r--r--keyboards/lets_split/keymaps/heartrobotninja/keymap.c183
-rw-r--r--keyboards/lets_split/keymaps/heartrobotninja/rules.mk26
3 files changed, 267 insertions, 0 deletions
diff --git a/keyboards/lets_split/keymaps/heartrobotninja/config.h b/keyboards/lets_split/keymaps/heartrobotninja/config.h
new file mode 100644
index 000000000..bb3556e57
--- /dev/null
+++ b/keyboards/lets_split/keymaps/heartrobotninja/config.h
@@ -0,0 +1,58 @@
+/*
+This is the c configuration file for the keymap
+
+Copyright 2012 Jun Wako <wakojun@gmail.com>
+Copyright 2015 Jack Humbert
+
+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
+along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef CONFIG_USER_H
+#define CONFIG_USER_H
+
+#include "../../config.h"
+
+/* Use I2C or Serial, not both */
+
+#define USE_SERIAL
+
+/* Select hand configuration */
+
+// #define MASTER_LEFT
+// #define MASTER_RIGHT
+#define EE_HANDS
+
+#define ONESHOT_TAP_TOGGLE 2
+#define ONESHOT_TIMEOUT 1000
+
+#undef LEADER_TIMEOUT
+#define LEADER_TIMEOUT 1000
+
+#undef TAPPING_TERM
+#define TAPPING_TERM 200
+
+#undef TAPPING_TOGGLE
+#define TAPPING_TOGGLE 2
+
+#ifdef SUBPROJECT_rev1
+#include "../../rev1/config.h"
+#endif
+#ifdef SUBPROJECT_rev2
+#include "../../rev2/config.h"
+#endif
+#ifdef SUBPROJECT_rev2fliphalf
+#include "../../rev2fliphalf/config.h"
+#endif
+
+#endif \ No newline at end of file
diff --git a/keyboards/lets_split/keymaps/heartrobotninja/keymap.c b/keyboards/lets_split/keymaps/heartrobotninja/keymap.c
new file mode 100644
index 000000000..aa28ebe92
--- /dev/null
+++ b/keyboards/lets_split/keymaps/heartrobotninja/keymap.c
@@ -0,0 +1,183 @@
+#include "lets_split.h"
+#include "action_layer.h"
+#include "action_util.h"
+#include "debug.h"
+#include "eeconfig.h"
+
+extern keymap_config_t keymap_config;
+
+// Each layer gets a name for readability, which is then used in the keymap matrix below.
+// The underscores don't mean anything - you can have a layer called STUFF or any other name.
+// Layer names don't all need to be of the same length, obviously, and you can also skip them
+// entirely and just use numbers.
+#define _COLE 0
+#define _LOWER 1
+#define _RAISE 2
+#define _AUX 16
+
+/* Layers */
+enum
+{
+ COLE = 0,
+ LOWER, // right hand 10 key.
+ RAISE, // left hand Fn, right hand symbols.
+ AUX,
+};
+
+/* Tap Dancery */
+enum
+{
+ TD_BTK,
+ TD_TDE,
+ TD_LPRN,
+ TD_RPRN,
+ TD_MIN,
+ TD_USC,
+};
+
+bool time_travel = false;
+
+// Fillers to make layering more clear
+#define ____ KC_TRNS
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+
+ /* Colemak
+ * ,-----------------------------------------------------------------------------------.
+ * | ' " `| Q | W | F | P | G | J | L | U | Y | = + | ~ ; :|
+ * |------+------+------+------+------+-------------+------+------+------+------+------|
+ * | ( [ {| A | R | S | T | D | H | N | E | I | O | ) ] }|
+ * |------+------+------+------+------+------|------+------+------+------+------+------|
+ * | - , <| Z | X | C | V | B | K | M | ? | | | ^ | _ . >|
+ * |------+------+------+------+------+------+------+------+------+------+------+------|
+ * |Lower |Raise | Ctrl | Alt | Bksp | Spc |Enter |LShft | ESC | < | v | > |
+ * `-----------------------------------------------------------------------------------'
+ */
+ [_COLE] = KEYMAP(
+ TD(TD_BTK), KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_EQL, TD(TD_TDE),
+ TD(TD_LPRN), KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, TD(TD_RPRN),
+ TD(TD_MIN), KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_SLSH, KC_BSLS, KC_UP, TD(TD_USC),
+ LOWER, RAISE, OSM(MOD_LCTL), OSM(MOD_LALT), KC_SPC, KC_BSPC, KC_ENT, OSM(MOD_LSFT), KC_ESC, KC_LEFT, KC_DOWN, KC_RGHT),
+
+ /* Lower
+ * ,-----------------------------------------------------------------------------------.
+ * | ---- | ---- | ---- | ---- | ---- | ---- | 7 | 8 | 9 | * | / | ^ |
+ * |------+------+------+------+------+-------------+------+------+------+------+------|
+ * | ---- | ---- | ---- | ---- | ---- | ---- | 4 | 5 | 6 | + | - | ---- |
+ * |------+------+------+------+------+------|------+------+------+------+------+------|
+ * | ---- | ---- | ---- | ---- | ---- | ---- | 1 | 2 | 3 | = | ---- | ---- |
+ * |------+------+------+------+------+------+------+------+------+------+------+------|
+ * | ---- | ---- | ---- | ---- | ---- | ---- | ---- | 0 | . | ---- | ---- | ---- |
+ * `-----------------------------------------------------------------------------------'
+ */
+ [_LOWER] = KEYMAP(
+ ____, ____, ____, ____, ____, ____, KC_7, KC_8, KC_9, KC_PAST, KC_PSLS, KC_CIRC,
+ ____, ____, ____, ____, ____, ____, KC_4, KC_5, KC_6, KC_PPLS, KC_PMNS, ____,
+ ____, ____, ____, ____, ____, ____, KC_1, KC_2, KC_3, KC_PEQL, ____, ____,
+ ____, ____, ____, ____, ____, ____, ____, KC_0, KC_MNXT, ____, ____, ____),
+
+ /* Raise
+ * ,-----------------------------------------------------------------------------------.
+ * | F1 | F2 | F3 | F4 | F5 | F6 | ! | @ | # | $ | % | ` ~ |
+ * |------+------+------+------+------+-------------+------+------+------+------+------|
+ * | F7 | F8 | F9 | F10 | F11 | F12 | ^ | & | * | ( | ) | - _ |
+ * |------+------+------+------+------+------|------+------+------+------+------+------|
+ * | ____ | ____ | ____ | ____ | ____ | ____ | [ { | ] } | \ | | ; : | ' " | = + |
+ * |------+------+------+------+------+------+------+------+------+------+------+------|
+ * | ____ | ____ | ____ | ____ | ____ | ____ | ____ | ____ | ____ | , < | . > | / ? |
+ * `-----------------------------------------------------------------------------------'
+ */
+ [_RAISE] = KEYMAP(
+ KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_GRV,
+ KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_MINS,
+ KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_LBRC, KC_RBRC, KC_BSLS, KC_SCLN, KC_QUOT, KC_EQL,
+ ____, ____, ____, ____, ____, ____, ____, ____, ____, KC_COMM, KC_DOT, KC_SLSH),
+
+ /* Adjust (Lower + Raise)
+ * ,-----------------------------------------------------------------------------------.
+ * | Reset| ____ | ____ | ____ | ____ | ____ | ____ | LOCK | ____ | ____ | ____ | VUP |
+ * |------+------+------+------+------+-------------+------+------+------+------+------|
+ * | ____ | ____ | RUN | ____ | ____ | ____ | ____ | ____ | ____ | ____ | ____ | VDWN |
+ * |------+------+------+------+------+------|------+------+------+------+------+------|
+ * | ____ | ____ | ____ | ____ | ____ | ____ | ____ | ____ | ____ | ____ | PGUP | MUTE |
+ * |------+------+------+------+------+------+------+------+------+------+------+------|
+ * | ____ | ____ | ____ | ____ | ____ | ____ | ____ | ____ | ____ | HOME | PGDN | END |
+ * `-----------------------------------------------------------------------------------'
+ */
+ [_AUX] = KEYMAP(
+ RESET, ____, ____, ____, ____, ____, ____, LGUI(KC_L), ____, ____, ____, KC_VOLU,
+ ____, ____, LGUI(KC_R), ____, ____, ____, ____, ____, ____, ____, ____, KC_VOLD,
+ ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, KC_PGUP, KC_MUTE,
+ ____, ____, ____, ____, KC_TAB, KC_DEL, ____, ____, ____, KC_HOME, KC_PGDOWN, KC_END)
+
+};
+
+qk_tap_dance_action_t tap_dance_actions[] = {
+ [TD_BTK] = ACTION_TAP_DANCE_DOUBLE(KC_QUOT, KC_GRV),
+ [TD_TDE] = ACTION_TAP_DANCE_DOUBLE(KC_SCLN, KC_TILD),
+ [TD_LPRN] = ACTION_TAP_DANCE_DOUBLE(KC_LBRC, KC_LPRN),
+ [TD_RPRN] = ACTION_TAP_DANCE_DOUBLE(KC_RBRC, KC_RPRN),
+ [TD_MIN] = ACTION_TAP_DANCE_DOUBLE(KC_COMM, KC_MINS),
+ [TD_USC] = ACTION_TAP_DANCE_DOUBLE(KC_DOT, KC_UNDS)};
+
+void persistent_default_layer_set(uint16_t default_layer)
+{
+ eeconfig_update_default_layer(default_layer);
+ default_layer_set(default_layer);
+};
+
+void matrix_scan_user(void){};
+
+void matrix_init_user(void){};
+
+bool process_record_user(uint16_t keycode, keyrecord_t *record)
+{
+ switch (keycode)
+ {
+ case COLE:
+ if (record->event.pressed)
+ {
+ persistent_default_layer_set(1UL << _COLE);
+ }
+ return false;
+ break;
+ case LOWER:
+ if (record->event.pressed)
+ {
+ layer_on(_LOWER);
+ update_tri_layer(_LOWER, _RAISE, _AUX);
+ }
+ else
+ {
+ layer_off(_LOWER);
+ update_tri_layer(_LOWER, _RAISE, _AUX);
+ }
+ return false;
+ break;
+ case RAISE:
+ if (record->event.pressed)
+ {
+ layer_on(_RAISE);
+ update_tri_layer(_LOWER, _RAISE, _AUX);
+ }
+ else
+ {
+ layer_off(_RAISE);
+ update_tri_layer(_LOWER, _RAISE, _AUX);
+ }
+ return false;
+ break;
+ case AUX:
+ if (record->event.pressed)
+ {
+ layer_on(_AUX);
+ }
+ else
+ {
+ layer_off(_AUX);
+ }
+ return false;
+ break;
+ }
+ return true;
+}
diff --git a/keyboards/lets_split/keymaps/heartrobotninja/rules.mk b/keyboards/lets_split/keymaps/heartrobotninja/rules.mk
new file mode 100644
index 000000000..d5e58dad4
--- /dev/null
+++ b/keyboards/lets_split/keymaps/heartrobotninja/rules.mk
@@ -0,0 +1,26 @@
+# 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
+#
+BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
+MOUSEKEY_ENABLE = no # Mouse keys(+4700)
+EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
+CONSOLE_ENABLE = no # Console for debug(+400)
+COMMAND_ENABLE = no # Commands for debug and configuration
+TAP_DANCE_ENABLE = yes
+NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
+BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
+MIDI_ENABLE = no # MIDI controls
+AUDIO_ENABLE = no # Audio output on port C6
+UNICODE_ENABLE = no # Unicode
+BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
+RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time.
+ONEHAND_ENABLE = no # Enable one-hand typing
+
+# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
+SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
+
+ifndef QUANTUM_DIR
+ include ../../../../Makefile
+endif
+