aboutsummaryrefslogtreecommitdiff
path: root/keyboards/converter/usb_usb/keymaps/chriskopher/shared_enum.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/converter/usb_usb/keymaps/chriskopher/shared_enum.h')
-rw-r--r--keyboards/converter/usb_usb/keymaps/chriskopher/shared_enum.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/keyboards/converter/usb_usb/keymaps/chriskopher/shared_enum.h b/keyboards/converter/usb_usb/keymaps/chriskopher/shared_enum.h
new file mode 100644
index 000000000..f83bfa3c4
--- /dev/null
+++ b/keyboards/converter/usb_usb/keymaps/chriskopher/shared_enum.h
@@ -0,0 +1,36 @@
1/* Copyright 2020 Christopher Ko <[email protected]>
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#pragma once
18
19enum keyboard_layer {
20 // Base layers
21 _CKO,
22 _QWERTY,
23 // Intermediate layers
24 _SUPERDUPER,
25 _DEV,
26 // Adjust layer at the end
27 _ADJUST
28};
29
30enum tap_dance_key_event {
31 // Extended space cadet shift tap dance
32 ESPC_L,
33 ESPC_R,
34 // Semicolon-Colon tap dance
35 SCLN_CLN
36};