summaryrefslogtreecommitdiff
path: root/keyboards/rmkeebs/rm_numpad/rm_numpad.c
diff options
context:
space:
mode:
authorRucker Machine <98196480+RuckerMachine@users.noreply.github.com>2022-04-13 07:28:12 -0700
committerGitHub <noreply@github.com>2022-04-13 07:28:12 -0700
commit57466c47ba9c088c2f2fedb2c1e0fab449302f77 (patch)
treefe2a8ea6f6d78cabce1a3afe4f5e0ac69145556d /keyboards/rmkeebs/rm_numpad/rm_numpad.c
parent973bc88b0fb56db6d0448dcc102d9eb0a5200b3d (diff)
downloadqmk_firmware-57466c47ba9c088c2f2fedb2c1e0fab449302f77.tar.gz
qmk_firmware-57466c47ba9c088c2f2fedb2c1e0fab449302f77.zip
[Keyboard] Add RM_Numpad (#15983)
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: jason <jrucker2004@gmail.com>
Diffstat (limited to 'keyboards/rmkeebs/rm_numpad/rm_numpad.c')
-rw-r--r--keyboards/rmkeebs/rm_numpad/rm_numpad.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/keyboards/rmkeebs/rm_numpad/rm_numpad.c b/keyboards/rmkeebs/rm_numpad/rm_numpad.c
new file mode 100644
index 0000000000..03dc9025c9
--- /dev/null
+++ b/keyboards/rmkeebs/rm_numpad/rm_numpad.c
@@ -0,0 +1,31 @@
+/* Copyright 2021 RuckerMachine
+ *
+ * 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 "rm_numpad.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