All you need to do is the following:
1. Open "encoder.h"
2. Find the lines that look like:
Code:
#define ENABLE_ENCODER_1
#define ENABLE_ENCODER_2
#define ENABLE_ENCODER_3
#define ENABLE_ENCODER_4
#define ENABLE_ENCODER_5
#define ENABLE_ENCODER_6
3. Comment out any line that corresponds to an encoder you aren't using. For example, if you are only using encoders 1 and 3, you should make the section look like the following:
Code:
#define ENABLE_ENCODER_1
//#define ENABLE_ENCODER_2
#define ENABLE_ENCODER_3
//#define ENABLE_ENCODER_4
//#define ENABLE_ENCODER_5
//#define ENABLE_ENCODER_6
4. Re-compile. Voila!