From 9c2703cab03ad3028ae77cbe3849929d7905f1db Mon Sep 17 00:00:00 2001 From: TW59420 <40019210+TW59420@users.noreply.github.com> Date: Tue, 13 Dec 2022 07:50:04 +0800 Subject: [Keyboard] add mw80 (#19223) Co-authored-by: jack <0x6a73@protonmail.com> --- keyboards/mwstudio/mw80/mw80.c | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 keyboards/mwstudio/mw80/mw80.c (limited to 'keyboards/mwstudio/mw80/mw80.c') 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 + * + * 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 . + */ + +#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 -- cgit v1.2.3