Convert Encoder callbacks to be boolean functions (#12805)
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
This commit is contained in:
		
							parent
							
								
									76c23b15ab
								
							
						
					
					
						commit
						a0fed0ea17
					
				
					 437 changed files with 2542 additions and 2135 deletions
				
			
		| 
						 | 
				
			
			@ -33,11 +33,11 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		|||
  KC_END,  KC_PGDN),
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
void encoder_update_user(uint8_t index, bool clockwise) {
 | 
			
		||||
bool encoder_update_user(uint8_t index, bool clockwise) {
 | 
			
		||||
  if(IS_LAYER_ON(2)){
 | 
			
		||||
    if (clockwise)
 | 
			
		||||
      tap_code(KC_LEFT);
 | 
			
		||||
    else 
 | 
			
		||||
    else
 | 
			
		||||
      tap_code(KC_RGHT);
 | 
			
		||||
  }
 | 
			
		||||
  else{
 | 
			
		||||
| 
						 | 
				
			
			@ -46,6 +46,7 @@ void encoder_update_user(uint8_t index, bool clockwise) {
 | 
			
		|||
    else
 | 
			
		||||
      tap_code(KC_VOLD);
 | 
			
		||||
  }
 | 
			
		||||
    return true;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void matrix_init_user(void) {
 | 
			
		||||
| 
						 | 
				
			
			@ -66,4 +67,4 @@ layer_state_t layer_state_set_user(layer_state_t state) {
 | 
			
		|||
    writePin(D4, !layer_state_cmp(state, 1));
 | 
			
		||||
    writePin(D3, !layer_state_cmp(state, 2));
 | 
			
		||||
    return state;
 | 
			
		||||
}
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -33,11 +33,11 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		|||
  KC_END,  KC_PGDN),
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
void encoder_update_user(uint8_t index, bool clockwise) {
 | 
			
		||||
bool encoder_update_user(uint8_t index, bool clockwise) {
 | 
			
		||||
  if(IS_LAYER_ON(2)){
 | 
			
		||||
    if (clockwise)
 | 
			
		||||
      tap_code(KC_LEFT);
 | 
			
		||||
    else 
 | 
			
		||||
    else
 | 
			
		||||
      tap_code(KC_RGHT);
 | 
			
		||||
  }
 | 
			
		||||
  else{
 | 
			
		||||
| 
						 | 
				
			
			@ -46,6 +46,7 @@ void encoder_update_user(uint8_t index, bool clockwise) {
 | 
			
		|||
    else
 | 
			
		||||
      tap_code(KC_VOLD);
 | 
			
		||||
  }
 | 
			
		||||
    return true;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void matrix_init_user(void) {
 | 
			
		||||
| 
						 | 
				
			
			@ -66,4 +67,4 @@ layer_state_t layer_state_set_user(layer_state_t state) {
 | 
			
		|||
    writePin(D4, !layer_state_cmp(state, 1));
 | 
			
		||||
    writePin(D3, !layer_state_cmp(state, 2));
 | 
			
		||||
    return state;
 | 
			
		||||
}
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue