diff options
author | Brandon Claveria <48102030+swiftrax@users.noreply.github.com> | 2022-02-08 21:51:51 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-08 21:51:51 -0800 |
commit | c49438feec9fb6be368d6377ca05d0c86d310d4f (patch) | |
tree | 9880b6f798a0d7f0150e82f4401c3c962ec81462 /keyboards/handwired/swiftrax/digicarp65/digicarp65.c | |
parent | c212b65e48bc203a05cd627ba0830b9be0b3d90a (diff) | |
download | qmk_firmware-c49438feec9fb6be368d6377ca05d0c86d310d4f.tar.gz qmk_firmware-c49438feec9fb6be368d6377ca05d0c86d310d4f.zip |
[Keyboard] Digicarp65 (#15926)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: swiftrax <swiftrax@github.com>
Diffstat (limited to 'keyboards/handwired/swiftrax/digicarp65/digicarp65.c')
-rw-r--r-- | keyboards/handwired/swiftrax/digicarp65/digicarp65.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/keyboards/handwired/swiftrax/digicarp65/digicarp65.c b/keyboards/handwired/swiftrax/digicarp65/digicarp65.c new file mode 100644 index 000000000..99823a756 --- /dev/null +++ b/keyboards/handwired/swiftrax/digicarp65/digicarp65.c | |||
@@ -0,0 +1,31 @@ | |||
1 | /* | ||
2 | Copyright 2022 Swiftrax <swiftrax@gmail.com> | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | #include "digicarp65.h" | ||
18 | |||
19 | #ifdef ENCODER_ENABLE | ||
20 | bool encoder_update_kb(uint8_t index, bool clockwise) { | ||
21 | if (!encoder_update_user(index, clockwise)) { return false; } | ||
22 | if (index == 0) { | ||
23 | if (clockwise) { | ||
24 | tap_code_delay(KC_VOLU, 10); | ||
25 | } else { | ||
26 | tap_code_delay(KC_VOLD, 10); | ||
27 | } | ||
28 | } | ||
29 | return true; | ||
30 | } | ||
31 | #endif | ||