#include QMK_KEYBOARD_H #include "keymap_german.h" // layers enum layers { _BASE, _NUM, _SYM, _MOV, _MEDIA }; // rgb void keyboard_post_init_user(void) { rgblight_enable_noeeprom(); // Enables RGB, without saving settings rgblight_sethsv(4, 75, 150); // warmwhite (werte = hue, saturation, value) rgblight_mode_noeeprom(RGB_MATRIX_SOLID_COLOR); } bool rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) { // https://colorpicker.me/#fff115 // shift rgb uint8_t mods = get_mods() | get_weak_mods() | get_oneshot_mods(); if ((mods) & MOD_MASK_SHIFT ) { rgb_matrix_set_color_all(31, 206, 211); // turquoise }; // layer rgb for (uint8_t i = led_min; i < led_max; i++) { switch(get_highest_layer(layer_state|default_layer_state)) { //base case 0: rgblight_sethsv(4, 75, 150); // warmwhite (werte = hue, saturation, value) break; // num case 1: // {siehe ../../skeletyl.c) // color thumbs rgb_matrix_set_color(35, 255, 165, 0); // orange rgb_matrix_set_color(34, 255, 165, 0); // orange rgb_matrix_set_color(33, 255, 165, 0); // orange break; // sym case 2: // color thumbs rgb_matrix_set_color(15, 0, 90, 255); // blue rgb_matrix_set_color(16, 0, 90, 255); // blue rgb_matrix_set_color(17, 0, 90, 255); // blue // color pairs // ยด` rgb_matrix_set_color(5, 20, 214, 22); // 50 shades of green rgb_matrix_set_color(11, 20, 214, 22); // 50 shades of green // [] rgb_matrix_set_color(3, 44, 0, 232); // 50 shades of blue rgb_matrix_set_color(21, 44, 0, 232); // 50 shades of blue // () rgb_matrix_set_color(8, 44, 0, 207); // 50 shades of blue rgb_matrix_set_color(26, 44, 0, 207); // 50 shades of blue // {} rgb_matrix_set_color(9, 44, 0, 171); // 50 shades of blue rgb_matrix_set_color(27, 44, 0, 171); // 50 shades of blue // \/ rgb_matrix_set_color(13, 235, 235, 19); // 50 shades of yellow rgb_matrix_set_color(31, 235, 235, 19); // 50 shades of yellow // <> rgb_matrix_set_color(14, 235, 56, 19); // 50 shades of red rgb_matrix_set_color(32, 235, 56, 19); // 50 shades of red break; // mov case 3: // color thumbs rgb_matrix_set_color(35, 4, 147, 4); // green rgb_matrix_set_color(34, 4, 147, 4); // green rgb_matrix_set_color(33, 4, 147, 4); // green rgb_matrix_set_color(15, 4, 147, 4); // green rgb_matrix_set_color(16, 4, 147, 4); // green rgb_matrix_set_color(17, 4, 147, 4); // green break; // media case 4: // color thumbs rgb_matrix_set_color(35, 255, 241, 21); // yellow rgb_matrix_set_color(34, 255, 241, 21); // yellow rgb_matrix_set_color(33, 255, 241, 21); // yellow rgb_matrix_set_color(15, 255, 241, 21); // yellow rgb_matrix_set_color(16, 255, 241, 21); // yellow rgb_matrix_set_color(17, 255, 241, 21); // yellow break; default: rgblight_sethsv(4, 75, 150); // warmwhite (werte = hue, saturation, value) break; } } return false; } // combos; https://github.com/qmk/qmk_firmware/blob/master/docs/feature_combo.md enum combos { C_ALT, C_KA, C_KK, C_ESC, C_MED, C_SV, // Strg + S C_WE // Windows Explorer }; const uint16_t PROGMEM alt_combo[] = {LCTL_T(KC_E), KC_I, COMBO_END}; const uint16_t PROGMEM ka_combo[] = {KC_R, LSFT_T(KC_T), COMBO_END}; const uint16_t PROGMEM kk_combo[] = {LSFT_T(KC_N), KC_I, COMBO_END}; const uint16_t PROGMEM esc_combo[] = {LCTL_T(KC_S), LSFT_T(KC_T), COMBO_END}; const uint16_t PROGMEM med_combo[] = {LT(_MOV, KC_DEL), MO(_MOV), COMBO_END}; const uint16_t PROGMEM sv_combo[] = {LCTL_T(KC_S), LT(_BASE,KC_C), COMBO_END}; const uint16_t PROGMEM we_combo[] = {LT(_BASE,KC_W), LCTL_T(KC_E), COMBO_END}; combo_t key_combos[] = { [C_ALT] = COMBO(alt_combo, KC_LALT), [C_KA] = COMBO(ka_combo, LCTL(LALT(KC_A))), [C_KK] = COMBO(kk_combo, LCTL(LALT(KC_K))), [C_ESC] = COMBO(esc_combo, KC_ESC), [C_MED] = COMBO(med_combo, MO(_MEDIA)), [C_SV] = COMBO(sv_combo, LCTL(KC_S)), [C_WE] = COMBO(we_combo, LGUI(KC_E)), }; // keymap const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { // Buchstaben - white [_BASE] = LAYOUT_split_3x5_3( LT(_BASE,KC_Q), LT(_BASE,KC_W), LT(_BASE,KC_F), KC_P, KC_B, KC_J, KC_L, LT(_BASE,KC_U), DE_Z, KC_BSPC, LT(_BASE,KC_A), KC_R, LCTL_T(KC_S), LSFT_T(KC_T), KC_G, KC_M, LSFT_T(KC_N), LCTL_T(KC_E), KC_I, LT(_BASE,KC_O), LT(_BASE,DE_Y), LT(_BASE,KC_X), LT(_BASE,KC_C), LSFT_T(KC_D), LT(_BASE,KC_V), KC_K, LSFT_T(KC_H), DE_COMM, DE_DOT, DE_MINS, XXXXXXX, LT(_MOV, KC_DEL), LT(_SYM, KC_ENT), LT(_NUM, KC_SPC), MO(_MOV), XXXXXXX ), // Zahlen - orange [_NUM] = LAYOUT_split_3x5_3( KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_BSPC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, QK_CAPS_WORD_TOGGLE, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_F10, KC_F11, _______, _______, KC_F12, XXXXXXX, _______, _______, _______, _______, XXXXXXX ), // Sym - blue [_SYM] = LAYOUT_split_3x5_3( DE_CIRC, DE_LBRC, DE_LPRN, DE_LPRN, DE_SECT, DE_PERC, DE_RCBR, DE_RPRN, DE_RBRC, KC_BSPC, DE_EXLM, DE_DQUO, DE_SS, DE_QUOT, DE_SLSH, RALT(DE_SS), DE_DLR, DE_AMPR, DE_ASTR, DE_QUES, DE_TILD, DE_ACUT, XXXXXXX, LSFT(DE_ACUT), DE_LABK , DE_RABK , XXXXXXX, DE_PLUS, DE_EQL, DE_HASH, XXXXXXX, _______, _______, _______, _______, XXXXXXX ), // Move - green [_MOV] = LAYOUT_split_3x5_3( XXXXXXX, KC_HOME, KC_UP, KC_PGUP, XXXXXXX, XXXXXXX, KC_PGUP, KC_UP, KC_HOME, KC_BSPC, KC_TAB, KC_LEFT, KC_DOWN, KC_RIGHT, XXXXXXX, XXXXXXX, KC_LEFT, KC_DOWN, KC_RIGHT, KC_DEL, XXXXXXX, KC_END, KC_PGDN, XXXXXXX, XXXXXXX, XXXXXXX, KC_PGDN, XXXXXXX, KC_END, XXXXXXX, XXXXXXX, _______, _______, _______, _______, XXXXXXX ), // Media - yellow [_MEDIA] = LAYOUT_split_3x5_3( RGB_TOG, XXXXXXX, XXXXXXX, KC_PSCR, KC_VOLU, KC_VOLU, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MUTE, KC_MUTE, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MPLY, KC_VOLD, KC_VOLD, KC_MPLY, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, _______, _______, _______, _______, XXXXXXX ) }; // https://github.com/qmk/qmk_firmware/blob/master/docs/mod_tap.md#changing-hold-function bool process_record_user(uint16_t keycode, keyrecord_t *record) { switch (keycode) { // "Tap and Hold" case LT(_BASE,KC_X): // "LT(_BASE,KC_X)" is the keycode that must be mapped if (!record->tap.count && record->event.pressed) { tap_code16(LCTL(KC_X)); // Intercept hold function to send Ctrl-X return false; } return true; // Return true for normal processing of tap keycode case LT(_BASE,DE_Y): if (!record->tap.count && record->event.pressed) { tap_code16(DE_PIPE); return false; } return true; case LT(_BASE,KC_C): if (!record->tap.count && record->event.pressed) { tap_code16(LCTL(KC_C)); return false; } return true; case LT(_BASE,KC_V): if (!record->tap.count && record->event.pressed) { tap_code16(LCTL(KC_V)); return false; } return true; case LT(_BASE,KC_Q): if (!record->tap.count && record->event.pressed) { tap_code16(RALT(KC_Q)); return false; } return true; case LT(_BASE,KC_F): if (!record->tap.count && record->event.pressed) { tap_code16(RALT(KC_E)); return false; } return true; case LT(_BASE,KC_A): if (!record->tap.count && record->event.pressed) { tap_code16(DE_ADIA); return false; } return true; case LT(_BASE,KC_O): if (!record->tap.count && record->event.pressed) { tap_code16(DE_ODIA); return false; } return true; case LT(_BASE,KC_U): if (!record->tap.count && record->event.pressed) { tap_code16(DE_UDIA); return false; } return true; case LT(_BASE,KC_W): if (!record->tap.count && record->event.pressed) { tap_code16(KC_LGUI); return false; } return true; } return true; }