807620fa3c
* [Keyboard] Add Chocofly v1 * PR Feedback * Small change to keymap. * Replace KC__VOLUP and KC__VOLDOWN with single underscore version. * Apply suggestions from code review * Required for my PC * Required for my PC
16 lines
374 B
C
16 lines
374 B
C
// Copyright 2022 Vitaly Volkov (@vlkv)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "chocofly.h"
|
|
|
|
#ifdef ENCODER_ENABLE
|
|
bool encoder_update_kb(uint8_t index, bool clockwise) {
|
|
if (!encoder_update_user(index, clockwise)) { return false; }
|
|
if (clockwise) {
|
|
tap_code(KC_VOLU);
|
|
} else {
|
|
tap_code(KC_VOLD);
|
|
}
|
|
return false;
|
|
}
|
|
#endif
|