summaryrefslogtreecommitdiff
path: root/keyboards/mwstudio/mw80/mw80.c
diff options
context:
space:
mode:
authorTW59420 <40019210+TW59420@users.noreply.github.com>2022-12-13 07:50:04 +0800
committerGitHub <noreply@github.com>2022-12-12 15:50:04 -0800
commit9c2703cab03ad3028ae77cbe3849929d7905f1db (patch)
tree76ee86de49b3888ec2cf834372e6f0086dcd602b /keyboards/mwstudio/mw80/mw80.c
parent291f98842301c3da3c50e4d26761a742081f0d89 (diff)
[Keyboard] add mw80 (#19223)
Co-authored-by: jack <0x6a73@protonmail.com>
Diffstat (limited to 'keyboards/mwstudio/mw80/mw80.c')
-rw-r--r--keyboards/mwstudio/mw80/mw80.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/keyboards/mwstudio/mw80/mw80.c b/keyboards/mwstudio/mw80/mw80.c
new file mode 100644
index 0000000000..e402f305ec
--- /dev/null
+++ b/keyboards/mwstudio/mw80/mw80.c
@@ -0,0 +1,31 @@
+/* Copyright 2022 TW59420 <https://github.com/TW59420>
+ *
+ * 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 "quantum.h"
+
+#ifdef ENCODER_ENABLE
+bool encoder_update_kb(uint8_t index, bool clockwise) {
+ if (!encoder_update_user(index, clockwise)) { return false; }
+ if (index == 0) {
+ if (clockwise) {
+ tap_code_delay(KC_VOLU, 10);
+ } else {
+ tap_code_delay(KC_VOLD, 10);
+ }
+ }
+ return true;
+}
+#endif