forked from mirrors/qmk_userspace
		
	Enable encoder map on navpad1.0 (#22266)
This commit is contained in:
		
					parent
					
						
							
								62ff02a101
							
						
					
				
			
			
				commit
				
					
						a46c7abd01
					
				
			
		
					 2 changed files with 9 additions and 12 deletions
				
			
		| 
						 | 
				
			
			@ -53,17 +53,13 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		|||
  )
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#ifdef ENCODER_ENABLE
 | 
			
		||||
bool encoder_update_user(uint8_t index, bool clockwise) {
 | 
			
		||||
  if (index == 0) { /* First encoder */
 | 
			
		||||
    if (clockwise) {
 | 
			
		||||
      tap_code16(KC_WH_U);
 | 
			
		||||
    } else {
 | 
			
		||||
      tap_code16(KC_WH_D);
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
  return false;
 | 
			
		||||
}
 | 
			
		||||
#if defined(ENCODER_MAP_ENABLE)
 | 
			
		||||
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
 | 
			
		||||
    [_BASE] = { ENCODER_CCW_CW(KC_WH_U, KC_WH_D) },
 | 
			
		||||
    [_FN1] = { ENCODER_CCW_CW(KC_NO, KC_NO) },
 | 
			
		||||
    [_FN2] = { ENCODER_CCW_CW(KC_NO, KC_NO) },
 | 
			
		||||
    [_FN3] = { ENCODER_CCW_CW(KC_NO, KC_NO) },
 | 
			
		||||
};
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifdef RGBLIGHT_LAYERS
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1 +1,2 @@
 | 
			
		|||
ENCODER_MAP_ENABLE = yes
 | 
			
		||||
VIA_ENABLE = yes
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue