summaryrefslogtreecommitdiffstats
path: root/keyboards/ergo42
diff options
context:
space:
mode:
authorBiacco42 <secondimpact_2000@yahoo.co.jp>2018-07-20 18:05:45 +0200
committerDrashna Jaelre <drashna@live.com>2018-07-20 18:05:45 +0200
commitd21b287e7d08484c95f0df2e34213d237a62806e (patch)
tree70d7eed56579c3f273597a5bd76b5510c4eaac31 /keyboards/ergo42
parentc50e80e13be5e34505f38eab31374ed2cee31da4 (diff)
downloadqmk_firmware-d21b287e7d08484c95f0df2e34213d237a62806e.tar.gz
qmk_firmware-d21b287e7d08484c95f0df2e34213d237a62806e.tar.xz
Keymap: Underglow support for Ergo42 default-ish keymap (#3431)
* Transprot underglow implementation to default map * Remove needless old lines
Diffstat (limited to 'keyboards/ergo42')
-rw-r--r--keyboards/ergo42/keymaps/default-underglow/config.h43
-rw-r--r--keyboards/ergo42/keymaps/default-underglow/keymap.c133
-rw-r--r--keyboards/ergo42/keymaps/default-underglow/rules.mk1
3 files changed, 177 insertions, 0 deletions
diff --git a/keyboards/ergo42/keymaps/default-underglow/config.h b/keyboards/ergo42/keymaps/default-underglow/config.h
new file mode 100644
index 000000000..bc80be306
--- /dev/null
+++ b/keyboards/ergo42/keymaps/default-underglow/config.h
@@ -0,0 +1,43 @@
+/*
+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
+// #define USE_I2C
+
+/* Select hand configuration */
+
+#define MASTER_LEFT
+// #define MASTER_RIGHT
+// #define EE_HANDS
+
+// Underglow
+#undef RGBLED_NUM
+#define RGBLED_NUM 14 // Number of LEDs
+#define RGBLIGHT_ANIMATIONS
+#define RGBLIGHT_SLEEP
+
+#endif
diff --git a/keyboards/ergo42/keymaps/default-underglow/keymap.c b/keyboards/ergo42/keymaps/default-underglow/keymap.c
new file mode 100644
index 000000000..a4d812c5d
--- /dev/null
+++ b/keyboards/ergo42/keymaps/default-underglow/keymap.c
@@ -0,0 +1,133 @@
+#include QMK_KEYBOARD_H
+
+extern keymap_config_t keymap_config;
+
+#define BASE 0
+#define META 1
+#define SYMB 2
+#define GAME 3
+#define RGB 4
+
+// Fillers to make layering more clear
+#define _______ KC_TRNS
+#define XXXXXXX KC_NO
+
+#ifdef RGBLIGHT_ENABLE
+//Following line allows macro to read current RGB settings
+extern rgblight_config_t rgblight_config;
+#endif
+
+enum custom_keycodes {
+ RGB_RST = SAFE_RANGE,
+ TAP_ANIM
+};
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+
+ /* BASE
+ * ,------------------------------------------------. ,------------------------------------------------.
+ * | ESC | Tab | Q | W | E | R | T | | Y | U | I | O | P | [ | Bksp |
+ * |------+------+------+------+------+------+------| |-------------+------+------+------+------+------|
+ * | Del | RCtrl| A | S | D | F | G | | H | J | K | L | ; | ] | Enter|
+ * |------+------+------+------+------+------+------| |------|------+------+------+------+------+------|
+ * | RGB | LSft | Z | X | C | V | B | | N | M | , | . | / | UP | RSft |
+ * |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
+ * | META | LCtrl| ` | \ | LAlt | LGUI |Space | |Space | ' | - | = | LEFT | DOWN | RIGHT|
+ * `------------------------------------------------' `------------------------------------------------'
+ */
+ [BASE] = LAYOUT( \
+ KC_ESC, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_BSPC, \
+ KC_DELT, KC_RCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_RBRC, KC_ENT, \
+ MO(RGB), KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_UP, KC_RSFT, \
+ MO(META), KC_LCTL, KC_GRV, KC_BSLS, KC_LALT, KC_LGUI, KC_SPC, KC_SPC, KC_QUOT, KC_MINS, KC_EQL, KC_LEFT, KC_DOWN, KC_RGHT \
+ ),
+
+ /* META
+ * ,------------------------------------------------. ,------------------------------------------------.
+ * | Reset| 1 | 2 | 3 | 4 | 5 | [ | | ] | 6 | 7 | 8 | 9 | 0 | Bksp |
+ * |------+------+------+------+------+------+------| |-------------+------+------+------+------+------|
+ * | Del | F1 | |Muhen | Henk | | | | Left | Down | Up |Right | | | Enter|
+ * |------+------+------+------+------+------+------| |------|------+------+------+------+------+------|
+ * | RGB | F2 | F3 | F4 | F5 | F6 | { | | } | F7 | F8 | F9 | F10 | F11 | F12 |
+ * |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
+ * | META | LCtrl| ` | \ | LAlt | LGUI |Space | |Space | ' | - | = | | | |
+ * `------------------------------------------------' `------------------------------------------------'
+ */
+ [META] = LAYOUT( \
+ RESET, KC_1, KC_2, KC_3, KC_4, KC_5, KC_LBRC, KC_RBRC, KC_6, KC_7, KC_8, KC_9, KC_0, _______, \
+ _______, KC_F1, XXXXXXX, KC_MHEN, KC_HENK, XXXXXXX, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, XXXXXXX, XXXXXXX, _______, \
+ _______, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, S(KC_LBRC), S(KC_RBRC), KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, \
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, XXXXXXX, XXXXXXX, XXXXXXX \
+ ),
+
+ /* SYMB
+ * ,------------------------------------------------. ,------------------------------------------------.
+ * | ESC | ! | @ | # | $ | % | [ | | ] | ^ | & | * | ( | ) | Bksp |
+ * |------+------+------+------+------+------+------| |-------------+------+------+------+------+------|
+ * | Del | | | | | | ( | | ) | | | | | | Enter|
+ * |------+------+------+------+------+------+------| |------|------+------+------+------+------+------|
+ * | RGB | | | | | | { | | } | | | | | UP | Sft |
+ * |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
+ * | META | LCtrl| ` | \ | LAlt | LGUI |Space | |Space | ' | - | = | LEFT | DOWN | RIGHT|
+ * `------------------------------------------------' `------------------------------------------------'
+ */
+ [SYMB] = LAYOUT( \
+ _______, S(KC_1), S(KC_2), S(KC_3), S(KC_4), S(KC_5), KC_LBRC, KC_RBRC, S(KC_6), S(KC_7), S(KC_8), S(KC_9), S(KC_0), _______, \
+ _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, S(KC_9), S(KC_0), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, _______, \
+ _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, S(KC_LBRC), S(KC_RBRC), XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, _______, _______, \
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \
+ ),
+
+ /* RGB
+ * ,------------------------------------------------. ,------------------------------------------------.
+ * | | | | | | | | | | | | | | | |
+ * |------+------+------+------+------+------+------| |-------------+------+------+------+------+------|
+ * | | | | | | | | | | TOG | HUI | SAI | VAI |HUANIM| |
+ * |------+------+------+------+------+------+------| |------|------+------+------+------+------+------|
+ * | | | | | | | | | | MOD | HUD | SAD | VAD |RESET | |
+ * |------+------+------+------+------+------+------| |------+------+------+------+------+------+------|
+ * | | | | | | | | | | | | | |=>RGB | |
+ * `------------------------------------------------' `------------------------------------------------'
+ */
+ [RGB] = LAYOUT( \
+ XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, \
+ XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, RGB_TOG, RGB_HUI, RGB_SAI, RGB_VAI, TAP_ANIM,XXXXXXX, \
+ _______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, RGB_MOD, RGB_HUI, RGB_SAD, RGB_VAD, RGB_RST, XXXXXXX, \
+ XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX \
+ )
+
+};
+
+bool isTapAnim = false;
+
+bool process_record_user(uint16_t keycode, keyrecord_t *record) {
+ switch (keycode) {
+ case RGB_MOD:
+ if (record->event.pressed) {
+ isTapAnim = false;
+ }
+ break;
+ case RGB_RST:
+ #ifdef RGBLIGHT_ENABLE
+ if (record->event.pressed) {
+ eeconfig_update_rgblight_default();
+ rgblight_enable();
+ }
+ #endif
+ break;
+ case TAP_ANIM:
+ if (record->event.pressed) {
+ isTapAnim = !isTapAnim;
+ }
+ break;
+ }
+
+ if (isTapAnim) {
+ rgblight_mode_noeeprom(1);
+ uint16_t hue = (rgblight_config.hue + 5) % 360;
+ rgblight_sethsv_noeeprom(hue, rgblight_config.sat, rgblight_config.val);
+ }
+
+ return true;
+}
+
diff --git a/keyboards/ergo42/keymaps/default-underglow/rules.mk b/keyboards/ergo42/keymaps/default-underglow/rules.mk
new file mode 100644
index 000000000..1e3cebb14
--- /dev/null
+++ b/keyboards/ergo42/keymaps/default-underglow/rules.mk
@@ -0,0 +1 @@
+RGBLIGHT_ENABLE = yes