~ruther/qmk_firmware

ref: b60413af60896a7b9d344f9f3dc61904015cb7ca qmk_firmware/quantum/debounce.h -rw-r--r-- 362 bytes
b60413af — Mike Roberts Use auto output for Adafruit BLE (#4131) 6 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
#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);