~ruther/qmk_firmware

ref: 628166a3a965eb6d721287b884d582dffda100f0 qmk_firmware/quantum/debounce.h -rw-r--r-- 389 bytes
628166a3 — Sergi Meseguer [Keymap] zigotica layout tweaks (#16291) 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

// raw is the current key state
// on entry cooked is the previous debounced state
// on exit cooked is the current debounced state
// changed is true if raw has changed since the last call
void debounce(matrix_row_t raw[], matrix_row_t cooked[], uint8_t num_rows, bool changed);

bool debounce_active(void);

void debounce_init(uint8_t num_rows);

void debounce_free(void);