summaryrefslogtreecommitdiff
path: root/keyboards/sthlmkb/litl/litl.c
diff options
context:
space:
mode:
authorMoses Hoyt <mohoyt@users.noreply.github.com>2022-11-30 08:06:01 +0100
committerGitHub <noreply@github.com>2022-11-29 23:06:01 -0800
commit5ff7f289f28e2b10b8d89d83fb0aee13080dae25 (patch)
tree60cd32e40db39cd2472fb6e0d6f58808a325498a /keyboards/sthlmkb/litl/litl.c
parent38a153b1435445f72c29c7cde50b018352c28d7c (diff)
[Keyboard] Add Litl keyboard (#19000)
Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
Diffstat (limited to 'keyboards/sthlmkb/litl/litl.c')
-rw-r--r--keyboards/sthlmkb/litl/litl.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/keyboards/sthlmkb/litl/litl.c b/keyboards/sthlmkb/litl/litl.c
new file mode 100644
index 0000000000..40aedfbe27
--- /dev/null
+++ b/keyboards/sthlmkb/litl/litl.c
@@ -0,0 +1,30 @@
+/* Copyright 2022 mohoyt
+ *
+ * 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 "litl.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