qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

mini_ten_key_plus.c (437B)


      1 // Copyright 2021 minibois (@minibois)
      2 // SPDX-License-Identifier: GPL-2.0-or-later
      3 
      4 #include "quantum.h"
      5 
      6 /* Rotary Encoder's function (currently volume up/down) */
      7 bool encoder_update_kb(uint8_t index, bool clockwise) {
      8     if (!encoder_update_user(index, clockwise)) { return false; }
      9         if (clockwise) {
     10             tap_code16(KC_RIGHT_PAREN);
     11         } else {
     12             tap_code16(KC_LEFT_PAREN);
     13         }
     14     return true;
     15 }