Jump to content

marcolvz

Member
  • Posts

    17
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. So i was trying to customize my LEDs configurations through QMK and what i was trying to do is make all my LEDs glow cyan and making my arrow keys turn red when caps-lock is active. I can't seem to understand how to do anything at all so I was hoping on your help. Here's what my configuration looks like atm (basically default but have right gui and MO(1) switched) #include QMK_KEYBOARD_H enum ctrl_keycodes { U_T_AUTO = SAFE_RANGE, //USB Extra Port Toggle Auto Detect / Always Active U_T_AGCR, //USB Toggle Automatic GCR control DBG_TOG, //DEBUG Toggle On / Off DBG_MTRX, //DEBUG Toggle Matrix Prints DBG_KBD, //DEBUG Toggle Keyboard Prints DBG_MOU, //DEBUG Toggle Mouse Prints MD_BOOT, //Restart into bootloader after hold timeout }; keymap_config_t keymap_config; const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { [0] = LAYOUT( KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_SLCK, KC_PAUS, \ KC_GRV, 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_INS, KC_HOME, KC_PGUP, \ KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_DEL, KC_END, KC_PGDN, \ KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, \ KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, \ KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT \ ), [1] = LAYOUT( _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MUTE, _______, _______, \ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, KC_MSTP, KC_VOLU, \ _______, RGB_SPD, RGB_VAI, RGB_SPI, RGB_HUI, RGB_SAI, _______, U_T_AUTO,U_T_AGCR,_______, _______, _______, _______, _______, KC_MPRV, KC_MNXT, KC_VOLD, \ _______, RGB_RMOD,RGB_VAD, RGB_MOD, RGB_HUD, RGB_SAD, _______, _______, _______, _______, _______, _______, _______, \ _______, RGB_TOG, _______, _______, _______, MD_BOOT, NK_TOGG, _______, _______, _______, _______, _______, _______, \ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \ ), /* [X] = LAYOUT( _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \ _______, _______, _______, _______, _______, _______, NK_TOGG, _______, _______, _______, _______, _______, _______, \ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \ ), */ }; // Runs just one time when the keyboard initializes. void matrix_init_user(void) { }; // Runs constantly in the background, in a loop. void matrix_scan_user(void) { }; #define MODS_SHIFT (get_mods() & MOD_MASK_SHIFT) #define MODS_CTRL (get_mods() & MOD_MASK_CTRL) #define MODS_ALT (get_mods() & MOD_MASK_ALT) bool process_record_user(uint16_t keycode, keyrecord_t *record) { static uint32_t key_timer; switch (keycode) { case U_T_AUTO: if (record->event.pressed && MODS_SHIFT && MODS_CTRL) { TOGGLE_FLAG_AND_PRINT(usb_extra_manual, "USB extra port manual mode"); } return false; case U_T_AGCR: if (record->event.pressed && MODS_SHIFT && MODS_CTRL) { TOGGLE_FLAG_AND_PRINT(usb_gcr_auto, "USB GCR auto mode"); } return false; case DBG_TOG: if (record->event.pressed) { TOGGLE_FLAG_AND_PRINT(debug_enable, "Debug mode"); } return false; case DBG_MTRX: if (record->event.pressed) { TOGGLE_FLAG_AND_PRINT(debug_matrix, "Debug matrix"); } return false; case DBG_KBD: if (record->event.pressed) { TOGGLE_FLAG_AND_PRINT(debug_keyboard, "Debug keyboard"); } return false; case DBG_MOU: if (record->event.pressed) { TOGGLE_FLAG_AND_PRINT(debug_mouse, "Debug mouse"); } return false; case MD_BOOT: if (record->event.pressed) { key_timer = timer_read32(); } else { if (timer_elapsed32(key_timer) >= 500) { reset_keyboard(); } } return false; case RGB_TOG: if (record->event.pressed) { switch (rgb_matrix_get_flags()) { case LED_FLAG_ALL: { rgb_matrix_set_flags(LED_FLAG_KEYLIGHT | LED_FLAG_MODIFIER); rgb_matrix_set_color_all(0, 0, 0); } break; case LED_FLAG_KEYLIGHT | LED_FLAG_MODIFIER: { rgb_matrix_set_flags(LED_FLAG_UNDERGLOW); rgb_matrix_set_color_all(0, 0, 0); } break; case LED_FLAG_UNDERGLOW: { rgb_matrix_set_flags(LED_FLAG_NONE); rgb_matrix_disable_noeeprom(); } break; default: { rgb_matrix_set_flags(LED_FLAG_ALL); rgb_matrix_enable_noeeprom(); } break; } } return false; default: return true; //Process all other keycodes normally } } Thank you in advance for every bit of help that you will give
  2. no just too much voltage and frequency for it ro run cool on load. actually i am running a custom loop (360 rad 40mm). the ambient temp is 32/33 degrees
  3. just managed to run it at 1.45v, dunno how or why (before it wouldn't even boot) but a 10 minutes run of aida 64 (only cpu, cache and sys memory, no fpu) didn't crash. only thing is that now cinebench r15 is out of question, 78/80 degrees is too much and crashes immediately wanna also add an information, now the ambient temp is 32 degrees and in idle i see a deltaT of 8/9 degrees
  4. what's the cpu utilization? if it's at 100% all the time then you might have a bottleneck (but the 2600x shouldn't be a problem), if it's not then it's completely normal in non-graphic intensive games. also, what games do you play and at what resolution?
  5. do you think that bclk will help with that? never tried it and dunno much about it edit: my objective was 1.45v or even lower
  6. 16GB of ram at a higher speed will make a HUGE diffence not only in gaming but also in everything else so you should absolutely do that if you can spend the money needed
  7. still, every advice is welcome and i want to decrease this voltage, i just dunno how, i also don't want to dial back the oc to 4.2GHz
  8. pbo does it everytime, even at 60/70 degrees, so i figured that it will be fine. also, my temps in gaming are always under 70 degrees
  9. ok so, I wanted to oc everything in my system but I encountered a problem, i can't run cinebench R20, R15 is fine, just R20 rises too much my temps for the voltage that i'm putting on the vcore i think (1.5v, everything under that crashes every single time). I ran aida64 without fpu and it is fine, temps rise to 75-76 C and nothing more, with fpu active i was a little bit concerned cause it hits 88+ so i immediately stop it everytime i try it. I was thinking about BLCK oc but i dunno if this will help decreasing my needed voltage for oc and i heard that sata devices suffer from that. I have a 250GB m.2 sata on the upper-most m.2 slot and a raid with the drives in sata port 0 and 1 total ram is 32GB if it's unclear in the photo, the radiator fan configuration is only push, not push-pull everything else should be in the screenshots that i will attach (I changed dram voltage to 1.4v and cas from 13 to 14 cause it didn't let me do that anyways though): https://imgur.com/a/mVkSESm
  10. so, unfortunately I can't run R20 cause 90 degrees (celsius) is apparently too much for 1.5volts on vcore, but, here's my r15 score:
  11. any thoughts on this? http://prntscr.com/od74b4 wanna make sure i'm making a good purchase
  12. ty very much, i also tried to ask bitspower directly and they also told me that, so i have my answer
  13. I'm gonna build my first water cooling loop with the ek-kit rgb 360 and my plans are adding a gpu block later so i searched for it. I found the BP-VG2070RD by bitspower and i was wondering if it came with a backplate (they do mention a "decorative panel" in the "included" section but i don't know what it is), also the backplate that is sold separately (BP-FT2080RD) for the geforce 2000 series in the bitspower shop is universal but i don't know if it fits on my card BP-VG2070RD: https://shop.bitspower.com/index.php?route=product/product&path=102_349&product_id=7148 BP-FT2080RD: https://shop.bitspower.com/index.php?route=product/product&path=102_349&product_id=7132 system: ryzen 7 2700x @ 4.2GHz, 32GB(4x8GB) ram @ 3200MHz(OC), nvidia rtx 2070 fe, x470 aorus gaming 7 wifi
×