1
0
Fork 0

[Keymap] Add andrebrait layout for GMMK Pro (#13932)

This commit is contained in:
Andre Brait 2021-08-12 15:55:19 +02:00 committed by GitHub
parent 7fe375aef5
commit 33f64903b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 342 additions and 3 deletions

View file

@ -16,6 +16,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include QMK_KEYBOARD_H
// clang-format off
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
// ESC F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 Prt Rotary(Mute)
@ -57,8 +58,9 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
};
// clang-format on
#ifdef ENCODER_ENABLE
bool encoder_update_user(uint8_t index, bool clockwise) {
if (clockwise) {
tap_code(KC_VOLU);
@ -67,3 +69,4 @@ bool encoder_update_user(uint8_t index, bool clockwise) {
}
return true;
}
#endif ENCODER_ENABLE