diff options
author | rooski15 <34818505+rooski15@users.noreply.github.com> | 2021-12-26 19:15:48 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-27 14:15:48 +1100 |
commit | 58f7aefadd075d9cb335b99d24629744164013c7 (patch) | |
tree | a7f56c8d0632d23434410415fc004810af8ada78 | |
parent | 8fd957b69b70136cf7b1ba7bed513e084fb3a340 (diff) | |
download | qmk_firmware-58f7aefadd075d9cb335b99d24629744164013c7.tar.gz qmk_firmware-58f7aefadd075d9cb335b99d24629744164013c7.zip |
Added RGB compatible FC660C keymaps. Added VIA support and fixed indicators on Cajal keymaps (#15087)
* Added RGB compatible keymaps
Added two keymaps, both replacing insert LED with RGB control.
One keymap VIA enabled and updated VIA json included.
* Fixed Indicators
Added code to fix LED indicator brightness.
* Fixed Indicator LEDs
Added code to fix indicator LED brightness
* Update README.md
* Update README.md
* Delete fc660c_via_RGB.json
* Update rules.mk
Added VIA_ENABLE
* Update keyboards/walletburner/cajal/rules.mk
Co-authored-by: Drashna Jaelre <drashna@live.com>
* Added VIA enabled Cajal stagger and ortho layouts
* Rename README.md to readme.md
* Removed Second via keymap.
* Rename README.md to readme.md
Co-authored-by: Drashna Jaelre <drashna@live.com>
-rw-r--r-- | keyboards/fc660c/keymaps/default_rgb/config.h | 51 | ||||
-rw-r--r-- | keyboards/fc660c/keymaps/default_rgb/keymap.c | 46 | ||||
-rw-r--r-- | keyboards/fc660c/keymaps/default_rgb/readme.md | 6 | ||||
-rw-r--r-- | keyboards/fc660c/keymaps/default_rgb/rules.mk | 1 | ||||
-rw-r--r-- | keyboards/fc660c/keymaps/via_rgb/config.h | 51 | ||||
-rw-r--r-- | keyboards/fc660c/keymaps/via_rgb/keymap.c | 46 | ||||
-rw-r--r-- | keyboards/fc660c/keymaps/via_rgb/readme.md | 6 | ||||
-rw-r--r-- | keyboards/fc660c/keymaps/via_rgb/rules.mk | 4 | ||||
-rw-r--r-- | keyboards/walletburner/cajal/keymaps/default/keymap.c | 10 | ||||
-rw-r--r-- | keyboards/walletburner/cajal/keymaps/default_ortho/keymap.c | 9 | ||||
-rw-r--r-- | keyboards/walletburner/cajal/keymaps/via/keymap.c | 96 | ||||
-rw-r--r-- | keyboards/walletburner/cajal/keymaps/via/rules.mk | 2 |
12 files changed, 328 insertions, 0 deletions
diff --git a/keyboards/fc660c/keymaps/default_rgb/config.h b/keyboards/fc660c/keymaps/default_rgb/config.h new file mode 100644 index 000000000..13153dd8f --- /dev/null +++ b/keyboards/fc660c/keymaps/default_rgb/config.h | |||
@@ -0,0 +1,51 @@ | |||
1 | /* Copyright 2017 Balz Guenat | ||
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 | #pragma once | ||
18 | |||
19 | // place overrides here | ||
20 | |||
21 | /*RGB*/ | ||
22 | /*Repurpose Insert LED */ | ||
23 | #define RGB_DI_PIN B5 | ||
24 | #ifdef RGB_DI_PIN | ||
25 | #define RGBLED_NUM 16 | ||
26 | #define RGBLIGHT_DEFAULT_HUE 127 | ||
27 | #define RGBLIGHT_HUE_STEP 8 | ||
28 | #define RGBLIGHT_SAT_STEP 8 | ||
29 | #define RGBLIGHT_VAL_STEP 8 | ||
30 | #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ | ||
31 | #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
32 | /*== all animations enable ==*/ | ||
33 | //#define RGBLIGHT_ANIMATIONS | ||
34 | /*== or choose animations ==*/ | ||
35 | #define RGBLIGHT_EFFECT_PLAIN | ||
36 | #define RGBLIGHT_EFFECT_BREATHING | ||
37 | #define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
38 | #define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
39 | //#define RGBLIGHT_EFFECT_SNAKE | ||
40 | #define RGBLIGHT_EFFECT_KNIGHT | ||
41 | //#define RGBLIGHT_EFFECT_CHRISTMAS | ||
42 | #define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
43 | //#define RGBLIGHT_EFFECT_RGB_TEST | ||
44 | //#define RGBLIGHT_EFFECT_ALTERNATING | ||
45 | /*== customize breathing effect ==*/ | ||
46 | /*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/ | ||
47 | //#define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64 | ||
48 | /*==== use exp() and sin() ====*/ | ||
49 | //#define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7 | ||
50 | //#define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255 | ||
51 | #endif \ No newline at end of file | ||
diff --git a/keyboards/fc660c/keymaps/default_rgb/keymap.c b/keyboards/fc660c/keymaps/default_rgb/keymap.c new file mode 100644 index 000000000..677797e39 --- /dev/null +++ b/keyboards/fc660c/keymaps/default_rgb/keymap.c | |||
@@ -0,0 +1,46 @@ | |||
1 | /* | ||
2 | This program is free software: you can redistribute it and/or modify | ||
3 | it under the terms of the GNU General Public License as published by | ||
4 | the Free Software Foundation, either version 2 of the License, or | ||
5 | (at your option) any later version. | ||
6 | |||
7 | This program is distributed in the hope that it will be useful, | ||
8 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
10 | GNU General Public License for more details. | ||
11 | |||
12 | You should have received a copy of the GNU General Public License | ||
13 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
14 | */ | ||
15 | #include QMK_KEYBOARD_H | ||
16 | |||
17 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
18 | [0] = LAYOUT( | ||
19 | KC_GESC, 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_INS, | ||
20 | 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, KC_DEL, | ||
21 | MO(1), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN,KC_QUOT, KC_ENT, | ||
22 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM,KC_DOT, KC_SLSH,KC_RSFT, KC_UP, | ||
23 | KC_LCTL, KC_LGUI,KC_LALT, KC_SPC, KC_RALT,KC_RCTL,MO(1), KC_LEFT,KC_DOWN,KC_RGHT | ||
24 | ), | ||
25 | [1] = LAYOUT( | ||
26 | KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, | ||
27 | _______,_______,_______,_______,_______,_______,_______,_______,KC_PSCR,KC_SLCK,KC_PAUS,_______,_______,_______, _______, | ||
28 | _______,_______,_______,_______,_______,_______,_______,_______,KC_HOME,KC_PGUP,_______,_______, _______, | ||
29 | _______,_______,_______,_______,_______,_______,_______,_______,KC_END, KC_PGDN,_______,_______, KC_PGUP, | ||
30 | _______,_______,_______, _______, _______,MO(2), _______, KC_HOME,KC_PGDN,KC_END | ||
31 | ), | ||
32 | [2] = LAYOUT( | ||
33 | RESET, EEPROM_RESET,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, RGB_TOG, | ||
34 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, RGB_MOD, | ||
35 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______, | ||
36 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, RGB_VAI, | ||
37 | _______,_______,_______, _______, _______,_______,_______, RGB_HUI,_______,RGB_SAI | ||
38 | ), | ||
39 | [3] = LAYOUT( | ||
40 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______, | ||
41 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______, | ||
42 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______, | ||
43 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______, | ||
44 | _______,_______,_______, _______, _______,_______,_______, _______,_______,_______ | ||
45 | ) | ||
46 | }; | ||
diff --git a/keyboards/fc660c/keymaps/default_rgb/readme.md b/keyboards/fc660c/keymaps/default_rgb/readme.md new file mode 100644 index 000000000..e52576231 --- /dev/null +++ b/keyboards/fc660c/keymaps/default_rgb/readme.md | |||
@@ -0,0 +1,6 @@ | |||
1 | # Keymap with Insert LED remapped to RGB control | ||
2 | |||
3 | Emulates original keymap, but replaces insert LED pin with RGB Underglow & respective configuration. | ||
4 | Allows users to add underglow lighting. See [this keebtalk thread](https://www.keebtalk.com/t/adding-rgb-to-fc660c-with-hasu-controller/14484) for more information. | ||
5 | |||
6 |  | ||
diff --git a/keyboards/fc660c/keymaps/default_rgb/rules.mk b/keyboards/fc660c/keymaps/default_rgb/rules.mk new file mode 100644 index 000000000..7ad666d1a --- /dev/null +++ b/keyboards/fc660c/keymaps/default_rgb/rules.mk | |||
@@ -0,0 +1 @@ | |||
RGBLIGHT_ENABLE = yes \ No newline at end of file | |||
diff --git a/keyboards/fc660c/keymaps/via_rgb/config.h b/keyboards/fc660c/keymaps/via_rgb/config.h new file mode 100644 index 000000000..13153dd8f --- /dev/null +++ b/keyboards/fc660c/keymaps/via_rgb/config.h | |||
@@ -0,0 +1,51 @@ | |||
1 | /* Copyright 2017 Balz Guenat | ||
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 | #pragma once | ||
18 | |||
19 | // place overrides here | ||
20 | |||
21 | /*RGB*/ | ||
22 | /*Repurpose Insert LED */ | ||
23 | #define RGB_DI_PIN B5 | ||
24 | #ifdef RGB_DI_PIN | ||
25 | #define RGBLED_NUM 16 | ||
26 | #define RGBLIGHT_DEFAULT_HUE 127 | ||
27 | #define RGBLIGHT_HUE_STEP 8 | ||
28 | #define RGBLIGHT_SAT_STEP 8 | ||
29 | #define RGBLIGHT_VAL_STEP 8 | ||
30 | #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ | ||
31 | #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
32 | /*== all animations enable ==*/ | ||
33 | //#define RGBLIGHT_ANIMATIONS | ||
34 | /*== or choose animations ==*/ | ||
35 | #define RGBLIGHT_EFFECT_PLAIN | ||
36 | #define RGBLIGHT_EFFECT_BREATHING | ||
37 | #define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
38 | #define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
39 | //#define RGBLIGHT_EFFECT_SNAKE | ||
40 | #define RGBLIGHT_EFFECT_KNIGHT | ||
41 | //#define RGBLIGHT_EFFECT_CHRISTMAS | ||
42 | #define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
43 | //#define RGBLIGHT_EFFECT_RGB_TEST | ||
44 | //#define RGBLIGHT_EFFECT_ALTERNATING | ||
45 | /*== customize breathing effect ==*/ | ||
46 | /*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/ | ||
47 | //#define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64 | ||
48 | /*==== use exp() and sin() ====*/ | ||
49 | //#define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7 | ||
50 | //#define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255 | ||
51 | #endif \ No newline at end of file | ||
diff --git a/keyboards/fc660c/keymaps/via_rgb/keymap.c b/keyboards/fc660c/keymaps/via_rgb/keymap.c new file mode 100644 index 000000000..f9d95b332 --- /dev/null +++ b/keyboards/fc660c/keymaps/via_rgb/keymap.c | |||
@@ -0,0 +1,46 @@ | |||
1 | /* | ||
2 | This program is free software: you can redistribute it and/or modify | ||
3 | it under the terms of the GNU General Public License as published by | ||
4 | the Free Software Foundation, either version 2 of the License, or | ||
5 | (at your option) any later version. | ||
6 | |||
7 | This program is distributed in the hope that it will be useful, | ||
8 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
10 | GNU General Public License for more details. | ||
11 | |||
12 | You should have received a copy of the GNU General Public License | ||
13 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
14 | */ | ||
15 | #include QMK_KEYBOARD_H | ||
16 | |||
17 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
18 | [0] = LAYOUT( | ||
19 | KC_GESC, 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_INS, | ||
20 | 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, KC_DEL, | ||
21 | MO(1), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN,KC_QUOT, KC_ENT, | ||
22 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM,KC_DOT, KC_SLSH,KC_RSFT, KC_UP, | ||
23 | KC_LCTL, KC_LGUI,KC_LALT, KC_SPC, KC_RALT,KC_RCTL,MO(1), KC_LEFT,KC_DOWN,KC_RGHT | ||
24 | ), | ||
25 | [1] = LAYOUT( | ||
26 | KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, | ||
27 | _______,_______,_______,_______,_______,_______,_______,_______,KC_PSCR,KC_SLCK,KC_PAUS,_______,_______,_______, _______, | ||
28 | _______,_______,_______,_______,_______,_______,_______,_______,KC_HOME,KC_PGUP,_______,_______, _______, | ||
29 | _______,_______,_______,_______,_______,_______,_______,_______,KC_END, KC_PGDN,_______,_______, KC_PGUP, | ||
30 | _______,_______,_______, _______, _______,MO(2), _______, KC_HOME,KC_PGDN,KC_END | ||
31 | ), | ||
32 | [2] = LAYOUT( | ||
33 | RESET, EEPROM_RESET,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,RGB_TOG, | ||
34 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, RGB_MOD, | ||
35 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______, | ||
36 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, RGB_VAI, | ||
37 | _______,_______,_______, _______, _______,_______,_______, RGB_HUI,_______,RGB_SAI | ||
38 | ), | ||
39 | [3] = LAYOUT( | ||
40 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______, | ||
41 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______, | ||
42 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______, | ||
43 | _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, _______, | ||
44 | _______,_______,_______, _______, _______,_______,_______, _______,_______,_______ | ||
45 | ) | ||
46 | }; | ||
diff --git a/keyboards/fc660c/keymaps/via_rgb/readme.md b/keyboards/fc660c/keymaps/via_rgb/readme.md new file mode 100644 index 000000000..7e16e937d --- /dev/null +++ b/keyboards/fc660c/keymaps/via_rgb/readme.md | |||
@@ -0,0 +1,6 @@ | |||
1 | # Keymap with Insert LED remapped to RGB control | ||
2 | |||
3 | Emulates original VIA keymap, but replaces insert LED pin with RGB Underglow & respective configuration. | ||
4 | Allows users to add underglow lighting. See [this keebtalk thread](https://www.keebtalk.com/t/adding-rgb-to-fc660c-with-hasu-controller/14484) for more information. | ||
5 | |||
6 |  | ||
diff --git a/keyboards/fc660c/keymaps/via_rgb/rules.mk b/keyboards/fc660c/keymaps/via_rgb/rules.mk new file mode 100644 index 000000000..0345a48f7 --- /dev/null +++ b/keyboards/fc660c/keymaps/via_rgb/rules.mk | |||
@@ -0,0 +1,4 @@ | |||
1 | VIA_ENABLE = yes | ||
2 | LTO_ENABLE = yes | ||
3 | RGBLIGHT_ENABLE = yes | ||
4 | COMMAND_ENABLE = no \ No newline at end of file | ||
diff --git a/keyboards/walletburner/cajal/keymaps/default/keymap.c b/keyboards/walletburner/cajal/keymaps/default/keymap.c index b98541753..4586e5695 100644 --- a/keyboards/walletburner/cajal/keymaps/default/keymap.c +++ b/keyboards/walletburner/cajal/keymaps/default/keymap.c | |||
@@ -47,6 +47,16 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
47 | ) | 47 | ) |
48 | }; | 48 | }; |
49 | 49 | ||
50 | //Initialize indicator LEDs | ||
51 | void matrix_init_user(void) { | ||
52 | setPinOutput(B5); | ||
53 | writePinLow(B5); | ||
54 | setPinOutput(B6); | ||
55 | writePinLow(B6); | ||
56 | setPinOutput(B7); | ||
57 | writePinLow(B7); | ||
58 | } | ||
59 | |||
50 | layer_state_t layer_state_set_user(layer_state_t state) { | 60 | layer_state_t layer_state_set_user(layer_state_t state) { |
51 | switch (get_highest_layer(state)) { | 61 | switch (get_highest_layer(state)) { |
52 | case 1: | 62 | case 1: |
diff --git a/keyboards/walletburner/cajal/keymaps/default_ortho/keymap.c b/keyboards/walletburner/cajal/keymaps/default_ortho/keymap.c index 394a744e6..87575e492 100644 --- a/keyboards/walletburner/cajal/keymaps/default_ortho/keymap.c +++ b/keyboards/walletburner/cajal/keymaps/default_ortho/keymap.c | |||
@@ -47,6 +47,15 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
47 | ) | 47 | ) |
48 | }; | 48 | }; |
49 | 49 | ||
50 | //Initialize indicator LEDs | ||
51 | void matrix_init_user(void) { | ||
52 | setPinOutput(B5); | ||
53 | writePinLow(B5); | ||
54 | setPinOutput(B6); | ||
55 | writePinLow(B6); | ||
56 | setPinOutput(B7); | ||
57 | writePinLow(B7); | ||
58 | } | ||
50 | 59 | ||
51 | layer_state_t layer_state_set_user(layer_state_t state) { | 60 | layer_state_t layer_state_set_user(layer_state_t state) { |
52 | writePinLow(B7); | 61 | writePinLow(B7); |
diff --git a/keyboards/walletburner/cajal/keymaps/via/keymap.c b/keyboards/walletburner/cajal/keymaps/via/keymap.c new file mode 100644 index 000000000..86348ed45 --- /dev/null +++ b/keyboards/walletburner/cajal/keymaps/via/keymap.c | |||
@@ -0,0 +1,96 @@ | |||
1 | /* Copyright 2020 Worldspawn <mcmancuso@gmail.com> | ||
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 | |||
19 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
20 | |||
21 | [0] = LAYOUT_stagger( | ||
22 | KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_BSPC, RGB_TOG, | ||
23 | CTL_T(KC_TAB), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_QUOT, KC_ENT, | ||
24 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_LSFT, KC_UP, | ||
25 | KC_LCTL, KC_LGUI, KC_LALT, MO(1), KC_SPC, KC_SPC, MO(2), KC_LEFT, KC_DOWN, KC_RGHT | ||
26 | ), | ||
27 | |||
28 | [1] = LAYOUT_stagger( | ||
29 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_RBRC, KC_BSLS, RGB_MOD, | ||
30 | KC_TRNS, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_TRNS, KC_TRNS, | ||
31 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PSCR, KC_TRNS, KC_PGUP, | ||
32 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, MO(3), KC_HOME, KC_PGDN, KC_END | ||
33 | ), | ||
34 | |||
35 | [2] = LAYOUT_stagger( | ||
36 | KC_TILD, 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_TRNS, | ||
37 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
38 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RGB_SAD, RGB_SAI, KC_TRNS, RGB_VAI, | ||
39 | KC_TRNS, KC_TRNS, KC_TRNS, MO(3), KC_TRNS, KC_TRNS, KC_TRNS, RGB_HUD, RGB_VAD, RGB_HUI | ||
40 | ), | ||
41 | |||
42 | [3] = LAYOUT_stagger( | ||
43 | RESET, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
44 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
45 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
46 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS | ||
47 | ) | ||
48 | }; | ||
49 | |||
50 | //Initialize indicator LEDs | ||
51 | void matrix_init_user(void) { | ||
52 | setPinOutput(B5); | ||
53 | writePinLow(B5); | ||
54 | setPinOutput(B6); | ||
55 | writePinLow(B6); | ||
56 | setPinOutput(B7); | ||
57 | writePinLow(B7); | ||
58 | } | ||
59 | |||
60 | layer_state_t layer_state_set_user(layer_state_t state) { | ||
61 | switch (get_highest_layer(state)) { | ||
62 | case 1: | ||
63 | writePinHigh(B7); | ||
64 | writePinLow(B6); | ||
65 | break; | ||
66 | case 2: | ||
67 | writePinLow(B7); | ||
68 | writePinHigh(B6); | ||
69 | break; | ||
70 | case 3: | ||
71 | writePinHigh(B7); | ||
72 | writePinHigh(B6); | ||
73 | break; | ||
74 | default: | ||
75 | writePinLow(B7); | ||
76 | writePinLow(B6); | ||
77 | break; | ||
78 | } | ||
79 | return state; | ||
80 | } | ||
81 | |||
82 | bool led_update_user(led_t led_state) { | ||
83 | writePin(B5, led_state.caps_lock); | ||
84 | return false; | ||
85 | } | ||
86 | |||
87 | bool encoder_update_user(uint8_t index, bool clockwise) { | ||
88 | if (index == 0) { | ||
89 | if (clockwise) { | ||
90 | tap_code(KC_VOLD); | ||
91 | } else { | ||
92 | tap_code(KC_VOLU); | ||
93 | } | ||
94 | } | ||
95 | return true; | ||
96 | } | ||
diff --git a/keyboards/walletburner/cajal/keymaps/via/rules.mk b/keyboards/walletburner/cajal/keymaps/via/rules.mk new file mode 100644 index 000000000..ca9fed0e6 --- /dev/null +++ b/keyboards/walletburner/cajal/keymaps/via/rules.mk | |||
@@ -0,0 +1,2 @@ | |||
1 | LTO_ENABLE = yes | ||
2 | VIA_ENABLE = yes | ||