]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/process_keycode/process_chording.h
Moves features to their own files (process_*), adds tap dance feature (#460)
[qmk_firmware.git] / quantum / process_keycode / process_chording.h
1 #ifndef PROCESS_CHORDING_H
2 #define PROCESS_CHORDING_H
3
4 #include "quantum.h"
5
6 // Chording stuff
7 #define CHORDING_MAX 4
8 bool chording = false;
9
10 uint8_t chord_keys[CHORDING_MAX] = {0};
11 uint8_t chord_key_count = 0;
12 uint8_t chord_key_down = 0;
13
14 bool process_chording(uint16_t keycode, keyrecord_t *record);
15
16 #endif