Remove deprecated callbacks for encoders and dip switches (#13404)
This commit is contained in:
		
							parent
							
								
									73d4d7dc2b
								
							
						
					
					
						commit
						b8a1e14f53
					
				
					 59 changed files with 338 additions and 458 deletions
				
			
		| 
						 | 
				
			
			@ -19,15 +19,13 @@
 | 
			
		|||
#    include "oled_display.h"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
enum layer_names {
 | 
			
		||||
  _MA,
 | 
			
		||||
  _FN
 | 
			
		||||
};
 | 
			
		||||
enum layer_names { _MA, _FN };
 | 
			
		||||
 | 
			
		||||
enum custom_keycodes {
 | 
			
		||||
    KC_CUST = SAFE_RANGE,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
// clang-format off
 | 
			
		||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		||||
    [_MA] = LAYOUT_ansi(
 | 
			
		||||
                KC_ESC,  KC_1,    KC_2,    KC_3,    KC_4,    KC_5,    KC_6,    KC_7,    KC_8,    KC_9,    KC_0,    KC_MINS, KC_EQL,  KC_BSPC, KC_HOME,
 | 
			
		||||
| 
						 | 
				
			
			@ -44,6 +42,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
			
		|||
        _______, _______, _______, _______,                   _______,                   _______, _______, _______, _______,          _______, _______
 | 
			
		||||
    ),
 | 
			
		||||
};
 | 
			
		||||
// clang-format on
 | 
			
		||||
 | 
			
		||||
#ifdef OLED_DRIVER_ENABLE
 | 
			
		||||
oled_rotation_t oled_init_user(oled_rotation_t rotation) {
 | 
			
		||||
| 
						 | 
				
			
			@ -53,7 +52,7 @@ oled_rotation_t oled_init_user(oled_rotation_t rotation) {
 | 
			
		|||
}
 | 
			
		||||
 | 
			
		||||
void oled_task_user(void) {
 | 
			
		||||
     if (timer_elapsed(oled_timer) >= 3000) {
 | 
			
		||||
    if (timer_elapsed(oled_timer) >= 3000) {
 | 
			
		||||
        set_oled_mode(OLED_MODE_IDLE);
 | 
			
		||||
    }
 | 
			
		||||
    render_frame();
 | 
			
		||||
| 
						 | 
				
			
			@ -64,23 +63,22 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
 | 
			
		|||
    // Send keystrokes to host keyboard, if connected (see readme)
 | 
			
		||||
    process_record_remote_kb(keycode, record);
 | 
			
		||||
 | 
			
		||||
    switch(keycode) {
 | 
			
		||||
    switch (keycode) {
 | 
			
		||||
        case RGB_TOG:
 | 
			
		||||
            if (record->event.pressed) {
 | 
			
		||||
#ifdef OLED_DRIVER_ENABLE
 | 
			
		||||
                process_record_keymap_oled(keycode);
 | 
			
		||||
#endif
 | 
			
		||||
            }
 | 
			
		||||
        break;
 | 
			
		||||
        case KC_CUST: //custom macro
 | 
			
		||||
            break;
 | 
			
		||||
        case KC_CUST:  // custom macro
 | 
			
		||||
            if (record->event.pressed) {
 | 
			
		||||
            }
 | 
			
		||||
        break;
 | 
			
		||||
            break;
 | 
			
		||||
    }
 | 
			
		||||
    return true;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
bool encoder_update_user(uint8_t index, bool clockwise) {
 | 
			
		||||
    if (clockwise) {
 | 
			
		||||
        tap_code(KC_VOLU);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue