add better example
This commit is contained in:
		
				
					committed by
					
						
						Drashna Jaelre
					
				
			
			
				
	
			
			
			
						parent
						
							85688e5b52
						
					
				
				
					commit
					24b3556e84
				
			@@ -32,10 +32,17 @@ The callback functions can be inserted into your `<keyboard>.c`:
 | 
			
		||||
or `keymap.c`:
 | 
			
		||||
 | 
			
		||||
    void encoder_update_user(uint8_t index, bool clockwise) {
 | 
			
		||||
        
 | 
			
		||||
        if (index == 0) {
 | 
			
		||||
            if (clockwise) {
 | 
			
		||||
                register_code(KC_PGDN);
 | 
			
		||||
                unregister_code(KC_PGDN);
 | 
			
		||||
            } else {
 | 
			
		||||
                register_code(KC_PGUP);
 | 
			
		||||
                unregister_code(KC_PGUP);
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## 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.
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user