aboutsummaryrefslogtreecommitdiff
path: root/keyboards
diff options
context:
space:
mode:
authorcodecoffeecode <lyharris8@gmail.com>2019-11-08 20:15:16 -0800
committerJames Young <18669334+noroadsleft@users.noreply.github.com>2019-11-08 20:15:16 -0800
commitf3f1bb166a283d1894afbeb2a81efa2da97de5c2 (patch)
tree7a4b6b9f618fabc7a47c579d1cb8061d29e70b20 /keyboards
parent63d899d1adef561490620e3b69cc2c0d25f29c74 (diff)
downloadqmk_firmware-f3f1bb166a283d1894afbeb2a81efa2da97de5c2.tar.gz
qmk_firmware-f3f1bb166a283d1894afbeb2a81efa2da97de5c2.zip
[Keymap] Adding keymaps for Niu Mini and BDN9 (#7299)
* niu-mini * fix * media controls were off by one * Adding some function keys * bdn9 and some other stuff * Fixed mouse functions on bdn9 -- the acceleration related macros are NOT optional * ported over foo to codecoffeecode niu_mini keymap * removing foobar * removing foobar, moving config changes to my folder only * limiting rule changes to my folder * Simplifying config.h and rules.mk * not really sure why this didn't commit the first time but... * Fixed up the Niu Mini * Update keyboards/keebio/bdn9/keymaps/codecoffeecode/config.h Adding missed #pragma once to the top of my config.h for bdn9 Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com> * Switching from SEND_STRING() to tap_code16 * Simplifying -> didn't need macros for Ctrl+(Home|End)
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/keebio/bdn9/config.h2
-rw-r--r--keyboards/keebio/bdn9/keymaps/codecoffeecode/config.h12
-rw-r--r--keyboards/keebio/bdn9/keymaps/codecoffeecode/keymap.c57
-rw-r--r--keyboards/keebio/bdn9/keymaps/codecoffeecode/rules.mk2
-rw-r--r--keyboards/keebio/bdn9/rules.mk2
-rw-r--r--keyboards/niu_mini/keymaps/codecoffeecode/keymap.c103
-rw-r--r--keyboards/niu_mini/keymaps/codecoffeecode/readme.md5
7 files changed, 181 insertions, 2 deletions
diff --git a/keyboards/keebio/bdn9/config.h b/keyboards/keebio/bdn9/config.h
index 641dc5736..40c8a1d77 100644
--- a/keyboards/keebio/bdn9/config.h
+++ b/keyboards/keebio/bdn9/config.h
@@ -64,4 +64,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
64/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ 64/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
65#define LOCKING_SUPPORT_ENABLE 65#define LOCKING_SUPPORT_ENABLE
66/* Locking resynchronize hack */ 66/* Locking resynchronize hack */
67#define LOCKING_RESYNC_ENABLE 67#define LOCKING_RESYNC_ENABLE \ No newline at end of file
diff --git a/keyboards/keebio/bdn9/keymaps/codecoffeecode/config.h b/keyboards/keebio/bdn9/keymaps/codecoffeecode/config.h
new file mode 100644
index 000000000..5b8b369bc
--- /dev/null
+++ b/keyboards/keebio/bdn9/keymaps/codecoffeecode/config.h
@@ -0,0 +1,12 @@
1#pragma once
2
3/* For USB nonsense in various OSs */
4#define TAP_CODE_DELAY 10
5
6/* For constant mouse speed */
7#define MOUSEKEY_DELAY 300
8#define MOUSEKEY_INTERVAL 50
9#define MOUSEKEY_MAX_SPEED 1
10#define MOUSEKEY_TIME_TO_MAX 0
11#define MOUSEKEY_WHEEL_MAX_SPEED 1
12#define MOUSEKEY_WHEEL_TIME_TO_MAX 0
diff --git a/keyboards/keebio/bdn9/keymaps/codecoffeecode/keymap.c b/keyboards/keebio/bdn9/keymaps/codecoffeecode/keymap.c
new file mode 100644
index 000000000..9747dbf22
--- /dev/null
+++ b/keyboards/keebio/bdn9/keymaps/codecoffeecode/keymap.c
@@ -0,0 +1,57 @@
1/* Copyright 2019 Danny Nguyen <danny@keeb.io>
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#include QMK_KEYBOARD_H
17
18const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
19 /*
20 | Knob 1: Scrl Dn/Up | | Knob 2: Vol Dn/Up |
21 | Press: Mute | Up | Press: Play/Pause |
22 | Left | Down | Right |
23 | Media Previous | MO(1)| Media Next |
24 */
25 [0] = LAYOUT(
26 KC_MUTE, KC_UP, KC_MPLY,
27 KC_LEFT, KC_DOWN, KC_RIGHT,
28 KC_MPRV, MO(1), KC_MNXT
29 ),
30 /*
31 | RESET | Home | Media Stop |
32 | | End | |
33 | CTRL_END | | CTRL_HOME |
34 */
35 [1] = LAYOUT(
36 RESET , KC_HOME, KC_STOP,
37 _______, KC_END, _______,
38 LCTL(KC_END), _______, LCTL(KC_HOME)
39 ),
40};
41
42void encoder_update_user(uint8_t index, bool clockwise) {
43 if (index == 0) {
44 if (clockwise) {
45 tap_code(KC_MS_WH_UP);
46 } else {
47 tap_code(KC_MS_WH_DOWN);
48 }
49 }
50 else if (index == 1) {
51 if (clockwise) {
52 tap_code(KC_VOLU);
53 } else {
54 tap_code(KC_VOLD);
55 }
56 }
57}
diff --git a/keyboards/keebio/bdn9/keymaps/codecoffeecode/rules.mk b/keyboards/keebio/bdn9/keymaps/codecoffeecode/rules.mk
new file mode 100644
index 000000000..e910b7bea
--- /dev/null
+++ b/keyboards/keebio/bdn9/keymaps/codecoffeecode/rules.mk
@@ -0,0 +1,2 @@
1MOUSEKEY_ENABLE = yes
2CTPC = yes \ No newline at end of file
diff --git a/keyboards/keebio/bdn9/rules.mk b/keyboards/keebio/bdn9/rules.mk
index 8b4bb334e..a54833407 100644
--- a/keyboards/keebio/bdn9/rules.mk
+++ b/keyboards/keebio/bdn9/rules.mk
@@ -31,4 +31,4 @@ BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
31AUDIO_ENABLE = no # Audio output on port C6 31AUDIO_ENABLE = no # Audio output on port C6
32FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches 32FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
33HD44780_ENABLE = no # Enable support for HD44780 based LCDs (+400) 33HD44780_ENABLE = no # Enable support for HD44780 based LCDs (+400)
34ENCODER_ENABLE = yes 34ENCODER_ENABLE = yes \ No newline at end of file
diff --git a/keyboards/niu_mini/keymaps/codecoffeecode/keymap.c b/keyboards/niu_mini/keymaps/codecoffeecode/keymap.c
new file mode 100644
index 000000000..7c794b203
--- /dev/null
+++ b/keyboards/niu_mini/keymaps/codecoffeecode/keymap.c
@@ -0,0 +1,103 @@
1#include QMK_KEYBOARD_H
2
3const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
4
5 /* Layer 0
6 * ,-----------------------------------------------------------------------------------.
7 * | Tab | Q | W | E | R | T | Y | U | I | O | P | Bksp |
8 * |------+------+------+------+------+-------------+------+------+------+------+------|
9 * | Esc | A | S | D | F | G | H | J | K | L | ; | " |
10 * |------+------+------+------+------+------|------+------+------+------+------+------|
11 * | Shift| Z | X | C | V | B | N | M | , | . | / |Enter |
12 * |------+------+------+------+------+------+------+------+------+------+------+------|
13 * | Ctrl | GUI | Caps | Alt |Layer1| Space |Layer2| Left | Down | Up |Right |
14 * `-----------------------------------------------------------------------------------'
15 */
16 [0] = LAYOUT_planck_mit(
17 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
18 KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
19 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
20 KC_LCTL, KC_LGUI, KC_CAPS, KC_LALT, MO(1), KC_SPC, MO(2), KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
21 ),
22
23 /* Layer 1
24 * ,-----------------------------------------------------------------------------------.
25 * | ` | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | Del |
26 * |------+------+------+------+------+-------------+------+------+------+------+------|
27 * | | Vol- | Vol+ | Mute | | | | F11 | F12 | | | |
28 * |------+------+------+------+------+------|------+------+------+------+------+------|
29 * | | | | | | | | | | | | |
30 * |------+------+------+------+------+------+------+------+------+------+------+------|
31 * | Reset| | | | | | | | | | | |
32 * `-----------------------------------------------------------------------------------'
33 */
34 [1] = LAYOUT_planck_mit(
35 KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_DEL,
36 _______, KC_VOLD, KC_VOLU, KC_MUTE, _______, _______, _______, KC_F11, KC_F12, _______, _______, _______,
37 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
38 RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
39 ),
40
41 /* Layer 2 (r_ Indicates RGB Controls)
42 * ,-----------------------------------------------------------------------------------.
43 * | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | |
44 * |------+------+------+------+------+-------------+------+------+------+------+------|
45 * | |r_TOG |r_Mode|r_Hue+|r_Hue-| | | - | = | [ | ] | \ |
46 * |------+------+------+------+------+------|------+------+------+------+------+------|
47 * | |BL_TOG|BL_STEP| | | | | | | | | |
48 * |------+------+------+------+------+------+------+------+------+------+------+------|
49 * | | | | | | | | | | | | |
50 * `-----------------------------------------------------------------------------------'
51 */
52 [2] = LAYOUT_planck_mit(
53 _______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______,
54 _______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, _______, _______, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS,
55 _______, BL_TOGG, BL_STEP, _______, _______, _______, _______, _______, _______, _______, _______, _______,
56 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
57 )
58};
59
60
61void matrix_init_user(void) {
62}
63
64void matrix_scan_user(void) {
65}
66
67bool process_record_user(uint16_t keycode, keyrecord_t *record) {
68 return true;
69}
70
71void led_set_user(uint8_t usb_led) {
72
73 if (IS_LED_ON(usb_led, USB_LED_NUM_LOCK)) {
74
75 } else {
76
77 }
78
79 if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
80
81 } else {
82
83 }
84
85 if (IS_LED_ON(usb_led, USB_LED_SCROLL_LOCK)) {
86
87 } else {
88
89 }
90
91 if (IS_LED_ON(usb_led, USB_LED_COMPOSE)) {
92
93 } else {
94
95 }
96
97 if (IS_LED_ON(usb_led, USB_LED_KANA)) {
98
99 } else {
100
101 }
102
103}
diff --git a/keyboards/niu_mini/keymaps/codecoffeecode/readme.md b/keyboards/niu_mini/keymaps/codecoffeecode/readme.md
new file mode 100644
index 000000000..661e24c9f
--- /dev/null
+++ b/keyboards/niu_mini/keymaps/codecoffeecode/readme.md
@@ -0,0 +1,5 @@
1## CodeCoffeeCode's 40% Keymap
2
3- Added Delete to Layer 1
4- Swapped Tab and Esc like on the Planck EZ
5- Put all the Arrows on the bottom row, moving the Forward Slash to beside Enter \ No newline at end of file