* [Core] Add kb level callbacks to OLED driver * Update keyboards and keymaps * Update docs * Update userspace configs * Add fix for my keymap ... * update lefty
		
			
				
	
	
		
			187 lines
		
	
	
		
			9.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			187 lines
		
	
	
		
			9.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
Copyright 2021 0xCB - Conor Burns
 | 
						|
 | 
						|
This program is free software: you can redistribute it and/or modify
 | 
						|
it under the terms of the GNU General Public License as published by
 | 
						|
the Free Software Foundation, either version 2 of the License, or
 | 
						|
(at your option) any later version.
 | 
						|
 | 
						|
This program is distributed in the hope that it will be useful,
 | 
						|
but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
GNU General Public License for more details.
 | 
						|
 | 
						|
You should have received a copy of the GNU General Public License
 | 
						|
along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
						|
*/
 | 
						|
#include QMK_KEYBOARD_H
 | 
						|
// clang-format off
 | 
						|
enum layer_names {
 | 
						|
  _HOME,
 | 
						|
  _MISC,
 | 
						|
  _RGB,
 | 
						|
  _BLED
 | 
						|
};
 | 
						|
 | 
						|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
						|
[_HOME] = LAYOUT(
 | 
						|
    KC_MPRV, KC_MNXT, KC_MPLY,
 | 
						|
    KC_PGUP, KC_PGDN, TO(3),
 | 
						|
    KC_HOME, KC_END,  TO(1)
 | 
						|
),
 | 
						|
[_MISC] = LAYOUT(
 | 
						|
    _______, _______, _______,
 | 
						|
    _______, _______, TO(0),
 | 
						|
    _______, _______, TO(2)
 | 
						|
),
 | 
						|
[_RGB] = LAYOUT(
 | 
						|
    RGB_HUI, RGB_HUD, RGB_MOD,
 | 
						|
    RGB_SAI, RGB_SAD, TO(1),
 | 
						|
    RGB_SPI, RGB_SPD, TO(3)
 | 
						|
),
 | 
						|
[_BLED] = LAYOUT(
 | 
						|
    BL_STEP, BL_BRTG, BL_TOGG,
 | 
						|
    BL_ON,   BL_OFF,  TO(2),
 | 
						|
    BL_INC,  BL_DEC,  TO(0)
 | 
						|
)
 | 
						|
};
 | 
						|
// clang-format on
 | 
						|
 | 
						|
/* rotary encoder (SW3) - add more else if blocks for more granular layer control */
 | 
						|
#ifdef ENCODER_ENABLE
 | 
						|
bool encoder_update_user(uint8_t index, bool clockwise) {
 | 
						|
    if (IS_LAYER_ON(_RGB)) {
 | 
						|
        #ifdef RGBLIGHT_ENABLE
 | 
						|
            if (clockwise) {
 | 
						|
                rgblight_increase_val();
 | 
						|
            } else {
 | 
						|
                rgblight_decrease_val();
 | 
						|
            }
 | 
						|
        #endif
 | 
						|
    } else if (IS_LAYER_ON(_BLED)) {
 | 
						|
        if (clockwise) {
 | 
						|
            backlight_increase();
 | 
						|
        } else {
 | 
						|
            backlight_decrease();
 | 
						|
        }
 | 
						|
    } else {
 | 
						|
        if (clockwise) {
 | 
						|
            tap_code(KC_VOLU);
 | 
						|
        } else {
 | 
						|
            tap_code(KC_VOLD);
 | 
						|
        }
 | 
						|
    }
 | 
						|
    return true;
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
/* oled stuff :) */
 | 
						|
#ifdef OLED_ENABLE
 | 
						|
uint16_t startup_timer;
 | 
						|
 | 
						|
oled_rotation_t oled_init_user(oled_rotation_t rotation) {
 | 
						|
    startup_timer = timer_read();
 | 
						|
    return rotation;
 | 
						|
}
 | 
						|
 | 
						|
static void render_logo(void) {
 | 
						|
    static const char PROGMEM raw_logo[] = {
 | 
						|
        0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
 | 
						|
        0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,128, 64,128,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,128, 64,128,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
 | 
						|
        0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,128,  0,  0,  0,  0,  0,  0,  1,  2,  4,  2,  1,  1,  1,  1,  1,  1,255,  0,  0,  0,  0,  0,  0,  0,  0,  0,255,  1,  1,  1,  1,  1,  1,  2,  4,  2,  1,  0,  0,  0,  0,  0,  0,128,  0,  0,  0,
 | 
						|
        0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  2,  5,248,  5,  2,  0,  0,  0,  0,  0,  0,128,192,192,224,224,112,120, 56, 63, 28, 14, 14, 14,254, 14, 14, 30, 28, 63, 56,120,112,224,224,192,128,  0,  0,  0,  0,  0,  0,  0,  2,  5,248,  5,  2,  0,
 | 
						|
        0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0, 64,160, 19,162, 66, 66, 66, 66, 66, 66, 66,255,255,255,  0,  0,  0,252,254,254,192,192,192,192,255,  0,  0,  0, 62, 62, 60, 60,  0,  0,  1,255,255,255, 66, 66, 66, 66, 66, 66, 66,162, 19,160, 64,  0,
 | 
						|
        0,  0,  0,128, 64, 64, 64,128,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,128,192, 64, 64,192,128,  0,  0,192, 64, 64,192,128,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,192, 64,192,  0,  0,  0,  0,  0,128,192, 64, 64,192,128,  0,  0,128,192, 64, 64,192,128,  0,  0, 64, 64, 64, 64, 64,192,  0,  0,  0,  0,  0,249,  8,  8,  8,  8,  8,  8,  8,  8,127,255,255,192,128,128, 15, 31, 31,  1,  1,  1,  1,255,  0,  0,  0, 30, 30, 14, 14,128,192,192,255,255,127,  8,  8,  8,  8,  8,  8,  8,  8,249,  0,  0,  0,
 | 
						|
        0,  0, 31, 49, 64, 78, 64, 49, 31,  0,  0, 97, 22,  8, 22, 97,  0,  0, 31, 49, 96, 64, 64, 96, 32,  0,  0,127, 68, 68,100, 59,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0, 64, 64,127, 64, 64,  0,  0,  0, 32,100, 68, 68,110, 59,  0,  0, 32,100, 68, 68,110, 59,  0,  0,  0,  0,  0,126,  3,  1,  0,  0,  0,  8, 20, 35, 20,  8,  0,  0,  0,  0,  0,  0,  0,  0,  1,  1,  3,  7,  7, 15,254, 30, 28, 28, 28,255, 28, 28, 28, 30,254, 15,  7,  3,  3,  1,  1,  0,  0,  0,  0,  0,  0,  0,  0,  4, 10, 17, 10,  4,  0,
 | 
						|
        0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0, 16, 40, 68, 40, 16, 16, 16, 16, 16, 16, 31,  0,  0, 16, 40, 71, 40, 16,  0,  0, 31, 16, 16, 16, 16, 16, 16, 40, 68, 40, 16,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
 | 
						|
    };
 | 
						|
    oled_write_raw_P(raw_logo, sizeof(raw_logo));
 | 
						|
}
 | 
						|
static void render_logo_font(void) {
 | 
						|
    static const char PROGMEM qmk_logo[] = {
 | 
						|
        0xC0, 0xC1, 0xC2, 0xC3, 0xC4, 0xCB, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0xCB, 0xCB, 0xCB, 0x9C, 0x9D, 0xCB, 0xCB,
 | 
						|
        0xE0, 0xE1, 0xE2, 0xE3, 0xE4, 0xCB, 0xA0, 0xA1, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xCB, 0xCB, 0xBB, 0xBC, 0xBD, 0xBE, 0xCB,
 | 
						|
        0xCC, 0xCD, 0xCE, 0xCF, 0xD0, 0xCB, 0x88, 0x89, 0x8A, 0x8B, 0x8A, 0x8B, 0x8C, 0x8D, 0xCB, 0xCB, 0xDB, 0xDC, 0xDD, 0xDE, 0xCB,
 | 
						|
        0xEC, 0xED, 0xEE, 0xEF, 0xF0, 0xCB, 0xA8, 0xA9, 0xAA, 0xAB, 0xAA, 0xAB, 0xAC, 0xAD, 0xCB, 0xFA, 0xFB, 0xFC, 0xFD, 0xFE, 0xFF, 0x00
 | 
						|
    };
 | 
						|
 | 
						|
    oled_write_P(qmk_logo, false);
 | 
						|
}
 | 
						|
/* Shows the name of the current layer and locks for the host (CAPS etc.) */
 | 
						|
static void render_info(void) {
 | 
						|
    oled_write_P(PSTR("Layer: "), false);
 | 
						|
 | 
						|
    switch (get_highest_layer(layer_state)) {
 | 
						|
        case _HOME:
 | 
						|
            oled_write_ln_P(PSTR("HOME"), false);
 | 
						|
            break;
 | 
						|
        case _MISC:
 | 
						|
            oled_write_ln_P(PSTR("MISC"), false);
 | 
						|
            break;
 | 
						|
        case _RGB:
 | 
						|
            oled_write_ln_P(PSTR("RGB"), false);
 | 
						|
            break;
 | 
						|
        case _BLED:
 | 
						|
            oled_write_ln_P(PSTR("Backlight"), false);
 | 
						|
            break;
 | 
						|
        default:
 | 
						|
            oled_write_ln_P(PSTR("Undefined"), false);
 | 
						|
    }
 | 
						|
    led_t led_state = host_keyboard_led_state();
 | 
						|
    oled_write_P(led_state.num_lock ? PSTR("NUM ") : PSTR("    "), false);
 | 
						|
    oled_write_P(led_state.caps_lock ? PSTR("CAP ") : PSTR("    "), false);
 | 
						|
    oled_write_ln_P(led_state.scroll_lock ? PSTR("SCR ") : PSTR("    "), false);
 | 
						|
}
 | 
						|
static void render_rgbled_status(bool) {
 | 
						|
    char string[4];
 | 
						|
    if (RGBLIGHT_MODES > 1 && rgblight_is_enabled() && get_highest_layer(layer_state) == _RGB) {
 | 
						|
        uint16_t m = rgblight_get_mode();
 | 
						|
        string[3] = '\0';
 | 
						|
        string[2] = '0' + m % 10;
 | 
						|
        string[1] = ( m /= 10) % 10 ? '0' + (m) % 10 : (m / 10) % 10 ? '0' : ' ';
 | 
						|
        string[0] =  m / 10 ? '0' + m / 10 : ' ';
 | 
						|
        oled_write_P(PSTR("Conf:"), false);
 | 
						|
        oled_write(string, false);
 | 
						|
        uint16_t h = rgblight_get_hue()/RGBLIGHT_HUE_STEP;
 | 
						|
        string[3] = '\0';
 | 
						|
        string[2] = '0' + h % 10;
 | 
						|
        string[1] = ( h /= 10) % 10 ? '0' + (h) % 10 : (h / 10) % 10 ? '0' : ' ';
 | 
						|
        string[0] =  h / 10 ? '0' + h / 10 : ' ';
 | 
						|
        oled_write_P(PSTR(","), false);
 | 
						|
        oled_write(string, false);
 | 
						|
        uint16_t s = rgblight_get_sat()/RGBLIGHT_SAT_STEP;
 | 
						|
        string[3] = '\0';
 | 
						|
        string[2] = '0' + s % 10;
 | 
						|
        string[1] = ( s /= 10) % 10 ? '0' + (s) % 10 : (s / 10) % 10 ? '0' : ' ';
 | 
						|
        string[0] =  s / 10 ? '0' + s / 10 : ' ';
 | 
						|
        oled_write_P(PSTR(","), false);
 | 
						|
        oled_write(string, false);
 | 
						|
        uint16_t v = rgblight_get_val()/RGBLIGHT_VAL_STEP;
 | 
						|
        string[3] = '\0';
 | 
						|
        string[2] = '0' + v % 10;
 | 
						|
        string[1] = ( v /= 10) % 10 ? '0' + (v) % 10 : (v / 10) % 10 ? '0' : ' ';
 | 
						|
        string[0] =  v / 10 ? '0' + v / 10 : ' ';
 | 
						|
        oled_write_P(PSTR(","), false);
 | 
						|
        oled_write(string, false);
 | 
						|
        oled_write_ln_P(PSTR("\n     MOD HUE SAT VAR"), false);
 | 
						|
    } else {
 | 
						|
        oled_write_ln_P(PSTR("\n"), false);
 | 
						|
    }
 | 
						|
}
 | 
						|
bool oled_task_user(void) {
 | 
						|
    static bool finished_timer = false;
 | 
						|
    if (!finished_timer && (timer_elapsed(startup_timer) < 1000)) {
 | 
						|
        render_logo();
 | 
						|
    } else {
 | 
						|
        if (!finished_timer) {
 | 
						|
            oled_clear();
 | 
						|
            finished_timer = true;
 | 
						|
        }
 | 
						|
        render_info();
 | 
						|
        render_rgbled_status(true);
 | 
						|
        render_logo_font();
 | 
						|
    }
 | 
						|
    return false;
 | 
						|
}
 | 
						|
#endif
 |