diff options
Diffstat (limited to 'keyboards/viendi8l/viendi8l.c')
-rw-r--r-- | keyboards/viendi8l/viendi8l.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/keyboards/viendi8l/viendi8l.c b/keyboards/viendi8l/viendi8l.c index 6d52993342..ea55f4efa3 100644 --- a/keyboards/viendi8l/viendi8l.c +++ b/keyboards/viendi8l/viendi8l.c @@ -15,7 +15,7 @@ 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 "viendi8l.h" +#include "quantum.h" // Defining indicator colors @@ -39,14 +39,3 @@ layer_state_t layer_state_set_kb(layer_state_t state) { } return state; } - -#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 |