diff options
| author | Reibl János Dániel <jani.reibl3@gmail.com> | 2020-09-29 06:48:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-28 21:48:35 -0700 |
| commit | 284a5267d5a0bbbeb6b83d4a88b8c64d7f4ab1ba (patch) | |
| tree | 71846237e5c34c5c09ab8799229639c6541c416e /keyboards | |
| parent | d844f5af7031e18d8933954e85903484d51d978a (diff) | |
| download | qmk_firmware-284a5267d5a0bbbeb6b83d4a88b8c64d7f4ab1ba.tar.gz qmk_firmware-284a5267d5a0bbbeb6b83d4a88b8c64d7f4ab1ba.zip | |
Add Unicode modes for `handwired/riblee_f401:riblee` (#10461)
* Add unicode modes
* Update keyboards/handwired/riblee_f401/keymaps/riblee/config.h
Diffstat (limited to 'keyboards')
3 files changed, 21 insertions, 3 deletions
diff --git a/keyboards/handwired/riblee_f401/keymaps/riblee/config.h b/keyboards/handwired/riblee_f401/keymaps/riblee/config.h new file mode 100644 index 000000000..bc80ffdd7 --- /dev/null +++ b/keyboards/handwired/riblee_f401/keymaps/riblee/config.h | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | /* Copyright 2020 Daniel Reibl <janos.daniel.reibl@protonmail.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 | #pragma once | ||
| 18 | #define UNICODE_SELECTED_MODES UC_MAC, UC_LNX | ||
diff --git a/keyboards/handwired/riblee_f401/keymaps/riblee/keymap.c b/keyboards/handwired/riblee_f401/keymaps/riblee/keymap.c index 33319542a..eec732df5 100644 --- a/keyboards/handwired/riblee_f401/keymaps/riblee/keymap.c +++ b/keyboards/handwired/riblee_f401/keymaps/riblee/keymap.c | |||
| @@ -286,7 +286,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 286 | * |------+------+------+------+------+-------------+------+------+------+------+------| | 286 | * |------+------+------+------+------+-------------+------+------+------+------+------| |
| 287 | * | | |Mu mod|Aud on|AudOff|AGnorm|AGswap|Qwerty|Colemk|Dvorak| | | | 287 | * | | |Mu mod|Aud on|AudOff|AGnorm|AGswap|Qwerty|Colemk|Dvorak| | | |
| 288 | * |------+------+------+------+------+------|------+------+------+------+------+------| | 288 | * |------+------+------+------+------+------|------+------+------+------+------+------| |
| 289 | * | | | | | | | NKRO | Swap |Un swp| | | | | 289 | * | | | | | | | NKRO | Swap |Un swp|UC Mod| | | |
| 290 | * |------+------+------+------+------+------+------+------+------+------+------+------| | 290 | * |------+------+------+------+------+------+------+------+------+------+------+------| |
| 291 | * | | | | | | | | | | | | | 291 | * | | | | | | | | | | | | |
| 292 | * `-----------------------------------------------------------------------------------' | 292 | * `-----------------------------------------------------------------------------------' |
| @@ -295,7 +295,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 295 | KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, | 295 | KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, |
| 296 | _______, RESET, DEBUG, _______, _______, _______, _______, TERM_ON, TERM_OFF,_______, _______, KC_DEL, | 296 | _______, RESET, DEBUG, _______, _______, _______, _______, TERM_ON, TERM_OFF,_______, _______, KC_DEL, |
| 297 | _______, _______, MU_MOD, AU_ON, AU_OFF, AG_NORM, AG_SWAP, QWERTY, COLEMAK, DVORAK, _______, _______, | 297 | _______, _______, MU_MOD, AU_ON, AU_OFF, AG_NORM, AG_SWAP, QWERTY, COLEMAK, DVORAK, _______, _______, |
| 298 | _______, _______, _______, _______, _______, _______, NK_TOGG, LCG_SWP, LCG_NRM, _______, _______, _______, | 298 | _______, _______, _______, _______, _______, _______, NK_TOGG, LCG_SWP, LCG_NRM, UC_MOD, _______, _______, |
| 299 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | 299 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ |
| 300 | ) | 300 | ) |
| 301 | 301 | ||
diff --git a/keyboards/handwired/riblee_f401/keymaps/riblee/readme.md b/keyboards/handwired/riblee_f401/keymaps/riblee/readme.md index 1045c9881..231f7afd3 100644 --- a/keyboards/handwired/riblee_f401/keymaps/riblee/readme.md +++ b/keyboards/handwired/riblee_f401/keymaps/riblee/readme.md | |||
| @@ -77,7 +77,7 @@ Adjust (Lower + Raise) | |||
| 77 | |------+------+------+------+------+-------------+------+------+------+------+------| | 77 | |------+------+------+------+------+-------------+------+------+------+------+------| |
| 78 | | | |Mu mod|Aud on|AudOff|AGnorm|AGswap|Qwerty|Colemk|Dvorak| | | | 78 | | | |Mu mod|Aud on|AudOff|AGnorm|AGswap|Qwerty|Colemk|Dvorak| | | |
| 79 | |------+------+------+------+------+------|------+------+------+------+------+------| | 79 | |------+------+------+------+------+------|------+------+------+------+------+------| |
| 80 | | | | | | | | NKRO | Swap |Un swp| | | | | 80 | | | | | | | | NKRO | Swap |Un swp|UC Mod| | | |
| 81 | |------+------+------+------+------+------+------+------+------+------+------+------| | 81 | |------+------+------+------+------+------+------+------+------+------+------+------| |
| 82 | | | | | | | | | | | | | | 82 | | | | | | | | | | | | | |
| 83 | `-----------------------------------------------------------------------------------' | 83 | `-----------------------------------------------------------------------------------' |
