summaryrefslogtreecommitdiff
path: root/keyboards/capsunlocked/cu75/keymaps
diff options
context:
space:
mode:
authorpeepeetee <43021794+peepeetee@users.noreply.github.com>2022-01-11 08:42:13 +0800
committerGitHub <noreply@github.com>2022-01-10 16:42:13 -0800
commitb1942d1d0c8fff71aa495f06768f570907af7ce8 (patch)
tree387c62484a179a1d9469c5e997fe0f26f3c6e73b /keyboards/capsunlocked/cu75/keymaps
parent93bacff1a60f2c05ee125d732fea3e677bb62567 (diff)
[Keyboard] move cu24, cu75, cu80/v1 into capsunlocked folder (#15758)
Diffstat (limited to 'keyboards/capsunlocked/cu75/keymaps')
-rw-r--r--keyboards/capsunlocked/cu75/keymaps/default/keymap.c59
-rw-r--r--keyboards/capsunlocked/cu75/keymaps/default/rules.mk40
-rw-r--r--keyboards/capsunlocked/cu75/keymaps/iso/keymap.c58
-rw-r--r--keyboards/capsunlocked/cu75/keymaps/iso/rules.mk40
4 files changed, 197 insertions, 0 deletions
diff --git a/keyboards/capsunlocked/cu75/keymaps/default/keymap.c b/keyboards/capsunlocked/cu75/keymaps/default/keymap.c
new file mode 100644
index 0000000000..b1e3e9f97a
--- /dev/null
+++ b/keyboards/capsunlocked/cu75/keymaps/default/keymap.c
@@ -0,0 +1,59 @@
+#include QMK_KEYBOARD_H
+
+enum keymap_layout {
+ VANILLA = 0,
+ FUNC,
+ SETTINGS,
+};
+
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+ /* Keymap VANILLA: (Base Layer) Default Layer
+ * ,------------------------------------------------------------.----.
+ * |Esc | F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12|F13|F14| F15|
+ * |------------------------------------------------------------|----|
+ * | ~ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0| - | = |Backspa| Ins|
+ * |------------------------------------------------------------|----|
+ * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \| Del|
+ * |------------------------------------------------------------|----|
+ * |CAPS | A| S| D| F| G| H| J| K| L| ;| '|Return |PgUp|
+ * |------------------------------------------------------------|----|
+ * |Shift | Z| X| C| V| B| N| M| ,| .| /|Shift |Up |PgDn|
+ * |-----------------------------------------------------------------|
+ * |Ctrl|Win |Alt |Space| Space |Space|Alt |Ctrl|Func|Lft| Dn |Rig |
+ * `-----------------------------------------------------------------'
+ */
+ [VANILLA] = LAYOUT(
+ KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_F13, KC_F14, KC_F15,
+ KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_INS,
+ KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_DEL,
+ KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_PGUP,
+ KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_PGDN,
+ KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_SPC, KC_SPC, KC_RALT, KC_RCTL, MO(FUNC), KC_LEFT, KC_DOWN, KC_RGHT
+
+ ),
+
+ /* Keymap VANILLA: Function Layer
+ * ,-------------------------------------------------------------------.
+ * | | | | | | | | | | | | | | | | |
+ * |-------------------------------------------------------------------|
+ * | | | | | | | | | | | | | | | |
+ * |-------------------------------------------------------------------|
+ * | | | | | | | | | | | | | | | RGB_TOG|
+ * |-------------------------------------------------------------------|
+ * | | | | | | | | | | | | |RESET |RGB_MODE|
+ * |-------------------------------------------------------------------|
+ * | | | | | | | | | |VAD|VAI| |RGB_HUI| |
+ * |-------------------------------------------------------------------|
+ * | | | | | | | |RGB_SAD|RGB_HUD|RGB_SAI|
+ * `-------------------------------------------------------------------'
+ */
+ [FUNC] = LAYOUT(
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_TOG,
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET, RGB_MOD,
+ _______, _______, _______, _______, _______, _______, _______, _______, RGB_VAD, RGB_VAI, _______, _______, RGB_HUI, _______,
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_SAD, RGB_HUD, RGB_SAI
+ ),
+};
diff --git a/keyboards/capsunlocked/cu75/keymaps/default/rules.mk b/keyboards/capsunlocked/cu75/keymaps/default/rules.mk
new file mode 100644
index 0000000000..bbd4c8c9fd
--- /dev/null
+++ b/keyboards/capsunlocked/cu75/keymaps/default/rules.mk
@@ -0,0 +1,40 @@
+BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
+MOUSEKEY_ENABLE = no # Mouse keys
+EXTRAKEY_ENABLE = yes # Audio control and System control
+CONSOLE_ENABLE = no # Console for debug
+COMMAND_ENABLE = no # Commands for debug and configuration
+NKRO_ENABLE = yes
+BACKLIGHT_ENABLE = yes # Disable keyboard backlight functionality
+AUDIO_ENABLE = no # Audio output
+RGBLIGHT_ENABLE = yes # Disable RGB underlight
+RGBLIGHT_CUSTOM_DRIVER = yes # RGB code is implemented in lefkeyboards, not WS2812
+SLEEP_LED_ENABLE = yes
+
+ISSI_ENABLE = yes # If the I2C pullup resistors aren't install this must be disabled
+WATCHDOG_ENABLE = no # Resets keyboard if matrix_scan isn't run every 250ms
+
+
+ifeq ($(strip $(ISSI_ENABLE)), yes)
+ TMK_COMMON_DEFS += -DISSI_ENABLE
+endif
+
+ifeq ($(strip $(WATCHDOG_ENABLE)), yes)
+ TMK_COMMON_DEFS += -DWATCHDOG_ENABLE
+endif
+
+
+# # Set the LFK78 hardware version. This is defined in rules.mk, but can be overidden here if desired
+# #
+# # RevB - first public release, uses atmega32u4, has audio, ISSI matrix split between RGB and backlight
+# # RevC/D - at90usb1286, no audio, ISSI device 0 is backlight, 4 is RGB
+# #
+# # Set to B, C or D
+# LFK_REV = D
+
+# ifeq ($(LFK_REV), B)
+# MCU = atmega32u4
+# else
+# MCU = at90usb1286
+# endif
+# OPT_DEFS += -DLFK_REV_$(LFK_REV)
+# OPT_DEFS += -DUSB_PRODUCT=\"LFK_Rev$(LFK_REV)\"
diff --git a/keyboards/capsunlocked/cu75/keymaps/iso/keymap.c b/keyboards/capsunlocked/cu75/keymaps/iso/keymap.c
new file mode 100644
index 0000000000..ce7d51eed0
--- /dev/null
+++ b/keyboards/capsunlocked/cu75/keymaps/iso/keymap.c
@@ -0,0 +1,58 @@
+#include QMK_KEYBOARD_H
+
+enum keymap_layout {
+ VANILLA = 0,
+ FUNC,
+ SETTINGS,
+};
+
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+ /* Keymap VANILLA: (Base Layer) Default Layer
+ * ,------------------------------------------------------------.----.
+ * |Esc | F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12|F13|F14| F15|
+ * |------------------------------------------------------------|----|
+ * | ~ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0| - | = |Backspa| Ins|
+ * |------------------------------------------------------------|----|
+ * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| Ret | Del|
+ * |--------------------------------------------------------. |----|
+ * |CAPS | A| S| D| F| G| H| J| K| L| ;| '| # | |PgUp|
+ * |------------------------------------------------------------|----|
+ * |Shft| \ | Z| X| C| V| B| N| M| ,| .| /|Shift | Up |PgDn|
+ * |-----------------------------------------------------------------|
+ * |Ctrl|Win |Alt | Space |Alt |Ctrl|Func|Lft| Dn |Rig |
+ * `-----------------------------------------------------------------'
+ */
+ [VANILLA] = LAYOUT_iso(
+ KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_F13, KC_F14, KC_F15,
+ KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_INS,
+ KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_ENT, KC_DEL,
+ KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_NUHS, KC_PGUP,
+ KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_PGDN,
+ KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_SPC, KC_SPC, KC_RALT, KC_RCTL, MO(FUNC), KC_LEFT, KC_DOWN, KC_RGHT
+ ),
+
+ /* Keymap VANILLA: Function Layer
+ * ,-----------------------------------------------------------.---.
+ * | | | | | | | | | | | | | | | | |
+ * |---------------------------------------------------------------|
+ * | | | | | | | | | | | | | | | |
+ * |---------------------------------------------------------------|
+ * | | | | | | | | | | | | | | |TOG|
+ * |------------------------------------------------------. |---|
+ * | | | | | | | | | | | | |RST| |MOD|
+ * |---------------------------------------------------------------|
+ * | | | | | | | | | |VAD|VAI| | |HUI| |
+ * |---------------------------------------------------------------|
+ * | | | | | | | |SAD|HUD|SAI|
+ * `---------------------------------------------------------------'
+ */
+ [FUNC] = LAYOUT_iso(
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_TOG,
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET, RGB_MOD,
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_VAD, RGB_VAI, _______, _______, RGB_HUI, _______,
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_SAD, RGB_HUD, RGB_SAI
+ ),
+};
diff --git a/keyboards/capsunlocked/cu75/keymaps/iso/rules.mk b/keyboards/capsunlocked/cu75/keymaps/iso/rules.mk
new file mode 100644
index 0000000000..be27fed69c
--- /dev/null
+++ b/keyboards/capsunlocked/cu75/keymaps/iso/rules.mk
@@ -0,0 +1,40 @@
+BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
+MOUSEKEY_ENABLE = no # Mouse keys(+4700)
+EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
+CONSOLE_ENABLE = yes # Console for debug(+400)
+COMMAND_ENABLE = yes # Commands for debug and configuration
+NKRO_ENABLE = yes
+# BACKLIGHT_ENABLE = no # Disable keyboard backlight functionality
+AUDIO_ENABLE = no # Audio output
+RGBLIGHT_ENABLE = no # Disable RGB underlight
+RGBLIGHT_CUSTOM_DRIVER = yes # RGB code is implemented in lefkeyboards, not WS2812
+SLEEP_LED_ENABLE = yes
+
+ISSI_ENABLE = no # If the I2C pullup resistors aren't install this must be disabled
+WATCHDOG_ENABLE = yes # Resets keyboard if matrix_scan isn't run every 250ms
+
+
+ifeq ($(strip $(ISSI_ENABLE)), yes)
+ TMK_COMMON_DEFS += -DISSI_ENABLE
+endif
+
+ifeq ($(strip $(WATCHDOG_ENABLE)), yes)
+ TMK_COMMON_DEFS += -DWATCHDOG_ENABLE
+endif
+
+
+# # Set the LFK78 hardware version. This is defined in rules.mk, but can be overidden here if desired
+# #
+# # RevB - first public release, uses atmega32u4, has audio, ISSI matrix split between RGB and backlight
+# # RevC/D - at90usb1286, no audio, ISSI device 0 is backlight, 4 is RGB
+# #
+# # Set to B, C or D
+# LFK_REV = D
+
+# ifeq ($(LFK_REV), B)
+# MCU = atmega32u4
+# else
+# MCU = at90usb1286
+# endif
+# OPT_DEFS += -DLFK_REV_$(LFK_REV)
+# OPT_DEFS += -DUSB_PRODUCT=\"LFK_Rev$(LFK_REV)\"