inital encoder implementation

This commit is contained in:
Jack Humbert 2018-06-03 21:55:07 -04:00
parent 018a0142d2
commit ff4a1ae5d2
11 changed files with 135 additions and 34 deletions

View file

@ -121,6 +121,10 @@ extern uint32_t default_layer_state;
#include "process_terminal_nop.h"
#endif
#ifdef ENCODER_ENABLE
#include "encoder.h"
#endif
#ifndef MIN
#define MAX(x, y) (((x) > (y)) ? (x) : (y))
#define MIN(x, y) (((x) < (y)) ? (x) : (y))