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 /keyboards/fc660c | |
| 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>
Diffstat (limited to 'keyboards/fc660c')
| -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 |
8 files changed, 211 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 | ||
