aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--keyboards/jacky_studio/bear_65/keymaps/stanrc85/keymap.c68
-rw-r--r--keyboards/jacky_studio/bear_65/keymaps/stanrc85/rules.mk1
-rw-r--r--users/stanrc85/rules.mk8
3 files changed, 75 insertions, 2 deletions
diff --git a/keyboards/jacky_studio/bear_65/keymaps/stanrc85/keymap.c b/keyboards/jacky_studio/bear_65/keymaps/stanrc85/keymap.c
new file mode 100644
index 000000000..477280634
--- /dev/null
+++ b/keyboards/jacky_studio/bear_65/keymaps/stanrc85/keymap.c
@@ -0,0 +1,68 @@
1/* Copyright 2021 Stanrc85
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
17#include QMK_KEYBOARD_H
18#include "stanrc85.h"
19
20const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
21 [_QWERTY] = LAYOUT_full_bs(
22 KC_ESC, KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_DEL,
23 KC_PGUP, 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_RBRC, KC_BSLS,
24 MO(_FN2_60), KC_CTLE, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
25 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP,
26 KC_LCTL, KC_LALT, LT_BPCF, KC_LGUI, LT_SPCF, TD_TWIN, KC_LEFT, KC_DOWN, KC_RGHT
27 ),
28 [_DEFAULT] = LAYOUT_full_bs(
29 KC_ESC, KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_DEL,
30 KC_PGUP, 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_RBRC, KC_BSLS,
31 KC_PGDN, KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
32 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP,
33 KC_LCTL, KC_LALT, KC_SPC, MO(_FN1_60), KC_SPC, MO(_FN2_60), KC_LEFT, KC_DOWN, KC_RGHT
34 ),
35 [_FN1_60] = LAYOUT_full_bs(
36 _______, _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, KC_INS,
37 _______, _______, _______, _______, _______, _______, KC_VOLU, KC_PGUP, KC_BSPC, KC_UP, KC_DEL, KC_PSCR, _______, _______, _______,
38 _______, KC_CAPS, _______, _______, KC_LCTL, KC_LSFT, KC_VOLD, KC_PGDN, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______,
39 _______, KC_RDP, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
40 _______, _______, _______, _______, _______, _______, _______, _______, _______
41 ),
42 [_FN2_60] = LAYOUT_full_bs(
43 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_TOG,
44 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET,
45 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MAKE,
46 _______, _______, _______, _______, _______, _______, _______, NK_TOGG, _______, _______, _______, _______, RGB_MOD, RGB_VAI,
47 TG(_DEFAULT), _______, _______, _______, _______, _______, RGB_HUD, RGB_VAD, RGB_HUI
48 )
49};
50
51layer_state_t layer_state_set_user(layer_state_t state) {
52 switch (get_highest_layer(state)) {
53 case _FN1_60:
54 break;
55 case _FN2_60:
56 rgb_matrix_mode_noeeprom(RGB_MATRIX_RAINBOW_MOVING_CHEVRON);
57 break;
58 case _DEFAULT:
59 rgb_matrix_mode_noeeprom(RGB_MATRIX_MULTISPLASH);
60 break;
61 case _QWERTY:
62 rgb_matrix_mode_noeeprom(RGB_MATRIX_TYPING_HEATMAP);
63 break;
64 default: // for any other layers, or the default layer
65 break;
66 }
67 return state;
68}
diff --git a/keyboards/jacky_studio/bear_65/keymaps/stanrc85/rules.mk b/keyboards/jacky_studio/bear_65/keymaps/stanrc85/rules.mk
new file mode 100644
index 000000000..89d03e8c1
--- /dev/null
+++ b/keyboards/jacky_studio/bear_65/keymaps/stanrc85/rules.mk
@@ -0,0 +1 @@
USER_NAME := stanrc85
diff --git a/users/stanrc85/rules.mk b/users/stanrc85/rules.mk
index e88d605f5..805a2929f 100644
--- a/users/stanrc85/rules.mk
+++ b/users/stanrc85/rules.mk
@@ -2,7 +2,6 @@ TAP_DANCE_ENABLE = yes
2EXTRAKEY_ENABLE = yes 2EXTRAKEY_ENABLE = yes
3BACKLIGHT_ENABLE = no 3BACKLIGHT_ENABLE = no
4COMMAND_ENABLE = no 4COMMAND_ENABLE = no
5BOOTMAGIC_ENABLE = no
6MOUSEKEY_ENABLE = no 5MOUSEKEY_ENABLE = no
7AUDIO_ENABLE = no 6AUDIO_ENABLE = no
8CONSOLE_ENABLE = no 7CONSOLE_ENABLE = no
@@ -31,4 +30,9 @@ endif
31ifeq ($(strip $(KEYBOARD)), boardsource/the_mark) 30ifeq ($(strip $(KEYBOARD)), boardsource/the_mark)
32 RGB_MATRIX_ENABLE = yes 31 RGB_MATRIX_ENABLE = yes
33 RGBLIGHT_ENABLE = no 32 RGBLIGHT_ENABLE = no
34endif \ No newline at end of file 33endif
34ifeq ($(strip $(KEYBOARD)), jacky_studio/bear_65)
35 BACKLIGHT_ENABLE = yes
36 RGB_MATRIX_ENABLE = yes
37 RGBLIGHT_ENABLE = no
38endif