77 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
# Encoders
 | 
						|
 | 
						|
Basic encoders are supported by adding this to your `rules.mk`:
 | 
						|
 | 
						|
```make
 | 
						|
ENCODER_ENABLE = yes
 | 
						|
```
 | 
						|
 | 
						|
and this to your `config.h`:
 | 
						|
 | 
						|
```c
 | 
						|
#define ENCODERS_PAD_A { B12 }
 | 
						|
#define ENCODERS_PAD_B { B13 }
 | 
						|
```
 | 
						|
 | 
						|
Each PAD_A/B variable defines an array so multiple encoders can be defined, e.g.:
 | 
						|
 | 
						|
```c
 | 
						|
#define ENCODERS_PAD_A { encoder1a, encoder2a }
 | 
						|
#define ENCODERS_PAD_B { encoder1b, encoder2b }
 | 
						|
```
 | 
						|
 | 
						|
If your encoder's clockwise directions are incorrect, you can swap the A & B pad definitions.  They can also be flipped with a define:
 | 
						|
 | 
						|
```c
 | 
						|
#define ENCODER_DIRECTION_FLIP
 | 
						|
```
 | 
						|
 | 
						|
Additionally, the resolution, which defines how many pulses the encoder registers between each detent, can be defined with:
 | 
						|
 | 
						|
```c
 | 
						|
#define ENCODER_RESOLUTION 4
 | 
						|
```
 | 
						|
 | 
						|
## Split Keyboards
 | 
						|
 | 
						|
If you are using different pinouts for the encoders on each half of a split keyboard, you can define the pinout for the right half like this:
 | 
						|
 | 
						|
```c
 | 
						|
#define ENCODERS_PAD_A_RIGHT { encoder1a, encoder2a }
 | 
						|
#define ENCODERS_PAD_B_RIGHT { encoder1b, encoder2b }
 | 
						|
```
 | 
						|
 | 
						|
## Callbacks
 | 
						|
 | 
						|
The callback functions can be inserted into your `<keyboard>.c`:
 | 
						|
 | 
						|
```c
 | 
						|
void encoder_update_kb(uint8_t index, bool clockwise) {
 | 
						|
    encoder_update_user(index, clockwise);
 | 
						|
}
 | 
						|
```
 | 
						|
 | 
						|
or `keymap.c`:
 | 
						|
 | 
						|
```c
 | 
						|
void encoder_update_user(uint8_t index, bool clockwise) {
 | 
						|
    if (index == 0) { /* First encoder */
 | 
						|
        if (clockwise) {
 | 
						|
            tap_code(KC_PGDN);
 | 
						|
        } else {
 | 
						|
            tap_code(KC_PGUP);
 | 
						|
        }
 | 
						|
    } else if (index == 1) { /* Second encoder */
 | 
						|
        if (clockwise) {
 | 
						|
            tap_code(KC_DOWN);
 | 
						|
        } else {
 | 
						|
            tap_code(KC_UP);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
```
 | 
						|
 | 
						|
## Hardware
 | 
						|
 | 
						|
The A an B lines of the encoders should be wired directly to the MCU, and the C/common lines should be wired to ground.
 |