logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

mini_ten_key_plus.c (437B)


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