Skip to content

Commit

Permalink
Allow a larger int for the idle timeout for urbanvanilla keymap (#19738)
Browse files Browse the repository at this point in the history
  • Loading branch information
tels7ar authored Apr 3, 2023
1 parent fe58538 commit 162d615
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keyboards/massdrop/alt/keymaps/urbanvanilla/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ uint8_t currentWPM;
bool process_record_user(uint16_t keycode, keyrecord_t *record) {

static uint32_t key_timer;
idle_timer = timer_read();
idle_timer = timer_read32();


switch (keycode) {
Expand Down Expand Up @@ -146,7 +146,7 @@ idle_timer = timer_read();

void matrix_scan_user(void) {
//custom idle rbg switch off function
if (timer_elapsed(idle_timer) > IDLE_TIMER_DURATION) {
if (timer_elapsed32(idle_timer) > IDLE_TIMER_DURATION) {
idle_timer = 0;
timer_clear();
rgbkeyIdle = true;
Expand Down

0 comments on commit 162d615

Please sign in to comment.