aboutsummaryrefslogtreecommitdiff
path: root/keyboards/keebio/stick/keymaps/default/keymap.c
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-02-07 18:57:18 +0000
committerQMK Bot <hello@qmk.fm>2021-02-07 18:57:18 +0000
commit10c88cdcd517888bfdbfc9dc0c58ceb7648b2d81 (patch)
tree4fc66706f16c870f48a88f48888565a408a826cf /keyboards/keebio/stick/keymaps/default/keymap.c
parent6233c6ac7b03aaa918d78a9a67122c939b87b290 (diff)
parent0355cd0f72899b554c180b7fe6ca61e140e2f908 (diff)
downloadqmk_firmware-10c88cdcd517888bfdbfc9dc0c58ceb7648b2d81.tar.gz
qmk_firmware-10c88cdcd517888bfdbfc9dc0c58ceb7648b2d81.zip
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/keebio/stick/keymaps/default/keymap.c')
-rw-r--r--keyboards/keebio/stick/keymaps/default/keymap.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/keyboards/keebio/stick/keymaps/default/keymap.c b/keyboards/keebio/stick/keymaps/default/keymap.c
new file mode 100644
index 000000000..0521afa88
--- /dev/null
+++ b/keyboards/keebio/stick/keymaps/default/keymap.c
@@ -0,0 +1,42 @@
1/*
2Copyright 2021 Danny Nguyen <danny@keeb.io>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#include QMK_KEYBOARD_H
19
20const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
21
22 [0] = LAYOUT(
23 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12
24 ),
25};
26
27void encoder_update_user(uint8_t index, bool clockwise) {
28 if (index == 0) {
29 if (clockwise) {
30 tap_code(KC_VOLU);
31 } else {
32 tap_code(KC_VOLD);
33 }
34 }
35 else if (index == 1) {
36 if (clockwise) {
37 tap_code(KC_DOWN);
38 } else {
39 tap_code(KC_UP);
40 }
41 }
42}