aboutsummaryrefslogtreecommitdiff
path: root/quantum/quantum_keycodes.h
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2021-03-01 08:57:02 -0800
committerGitHub <noreply@github.com>2021-03-01 08:57:02 -0800
commit0e984b6e7e216a62df0b5d53f6a8f0d4bc13dca3 (patch)
tree1e85b1d15a9ea6ad86fcb6ae8d084f926dd11ab8 /quantum/quantum_keycodes.h
parent86f6f682744b81bba1003e555f902af78dcdaad4 (diff)
downloadqmk_firmware-0e984b6e7e216a62df0b5d53f6a8f0d4bc13dca3.tar.gz
qmk_firmware-0e984b6e7e216a62df0b5d53f6a8f0d4bc13dca3.zip
Add ability to toggle One Shot functionality (#4198)
Co-authored-by: Nick Brassel <nick@tzarc.org> Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'quantum/quantum_keycodes.h')
-rw-r--r--quantum/quantum_keycodes.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/quantum/quantum_keycodes.h b/quantum/quantum_keycodes.h
index e0f5dbc61..63945a17c 100644
--- a/quantum/quantum_keycodes.h
+++ b/quantum/quantum_keycodes.h
@@ -578,6 +578,10 @@ enum quantum_keycodes {
578 578
579#endif 579#endif
580 580
581 ONESHOT_ENABLE,
582 ONESHOT_DISABLE,
583 ONESHOT_TOGGLE,
584
581 // always leave at the end 585 // always leave at the end
582 SAFE_RANGE 586 SAFE_RANGE
583}; 587};
@@ -885,3 +889,8 @@ enum quantum_keycodes {
885#define DM_RSTP DYN_REC_STOP 889#define DM_RSTP DYN_REC_STOP
886#define DM_PLY1 DYN_MACRO_PLAY1 890#define DM_PLY1 DYN_MACRO_PLAY1
887#define DM_PLY2 DYN_MACRO_PLAY2 891#define DM_PLY2 DYN_MACRO_PLAY2
892
893// One Shot toggle
894#define OS_TOGG ONESHOT_TOGGLE
895#define OS_ON ONESHOT_ENABLE
896#define OS_OFF ONESHOT_DISABLE