summaryrefslogtreecommitdiff
path: root/keyboards/takashicompany/compacx/compacx.c
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-11-04 05:26:58 +0000
committerQMK Bot <hello@qmk.fm>2021-11-04 05:26:58 +0000
commit5d2ccae62cf09dd0e5a4038c202449666dd90d3e (patch)
tree86f32226fe561e0287777e4dc7d75a67a7ec62cf /keyboards/takashicompany/compacx/compacx.c
parentf529580860cf5a1de4afc10432f218a45daae17a (diff)
parent8ce69e6a8373abba52411989d16e6bbe8d575097 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/takashicompany/compacx/compacx.c')
-rw-r--r--keyboards/takashicompany/compacx/compacx.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/keyboards/takashicompany/compacx/compacx.c b/keyboards/takashicompany/compacx/compacx.c
new file mode 100644
index 0000000000..cf23638920
--- /dev/null
+++ b/keyboards/takashicompany/compacx/compacx.c
@@ -0,0 +1,28 @@
+/* Copyright 2021 takashicompany
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "compacx.h"
+
+bool encoder_update_kb(uint8_t index, bool clockwise) {
+ if (!encoder_update_user(index, clockwise)) { return false; }
+ if (!clockwise) {
+ tap_code(KC_MS_WH_UP);
+ } else {
+ tap_code(KC_MS_WH_DOWN);
+ }
+
+ return true;
+}