diff options
Diffstat (limited to 'keyboards/kbdfans/kbdmini')
| -rw-r--r-- | keyboards/kbdfans/kbdmini/config.h | 47 | ||||
| -rw-r--r-- | keyboards/kbdfans/kbdmini/kbdmini.c | 96 | ||||
| -rw-r--r-- | keyboards/kbdfans/kbdmini/kbdmini.h | 15 | ||||
| -rw-r--r-- | keyboards/kbdfans/kbdmini/keymaps/default/keymap.c | 9 | ||||
| -rw-r--r-- | keyboards/kbdfans/kbdmini/readme.md | 13 | ||||
| -rw-r--r-- | keyboards/kbdfans/kbdmini/rules.mk | 33 |
6 files changed, 213 insertions, 0 deletions
diff --git a/keyboards/kbdfans/kbdmini/config.h b/keyboards/kbdfans/kbdmini/config.h new file mode 100644 index 000000000..0fc7b5acb --- /dev/null +++ b/keyboards/kbdfans/kbdmini/config.h | |||
| @@ -0,0 +1,47 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include "config_common.h" | ||
| 4 | |||
| 5 | /* USB Device descriptor parameter */ | ||
| 6 | #define VENDOR_ID 0xFEED | ||
| 7 | #define PRODUCT_ID 0x2001 | ||
| 8 | #define DEVICE_VER 0x0001 | ||
| 9 | #define MANUFACTURER DZTECH | ||
| 10 | |||
| 11 | #define PRODUCT KBDMINI | ||
| 12 | #define DESCRIPTION KBDMINI RGB keyboard | ||
| 13 | #define MATRIX_ROWS 4 | ||
| 14 | #define MATRIX_COLS 13 | ||
| 15 | |||
| 16 | #define MATRIX_ROW_PINS {B7, E6, F5, F4} | ||
| 17 | #define MATRIX_COL_PINS {B3, B2, B1, B0, F1, F0, C6, B6, B5, B4, D7, D6, D4} | ||
| 18 | #define UNUSED_PINS | ||
| 19 | #define DIODE_DIRECTION COL2ROW | ||
| 20 | |||
| 21 | #define DEBOUNCE 3 | ||
| 22 | #ifdef RGB_MATRIX_ENABLE | ||
| 23 | #define RGB_DISABLE_AFTER_TIMEOUT 0 // number of ticks to wait until disabling effects | ||
| 24 | #define RGB_DISABLE_WHEN_USB_SUSPENDED true // turn off effects when suspended | ||
| 25 | #define RGB_MATRIX_KEYPRESSES | ||
| 26 | #define RGB_MATRIX_FRAMEBUFFER_EFFECTS | ||
| 27 | #define DISABLE_RGB_MATRIX_GRADIENT_UP_DOWN | ||
| 28 | #define DISABLE_RGB_MATRIX_BAND_SAT | ||
| 29 | #define DISABLE_RGB_MATRIX_BAND_PINWHEEL_SAT | ||
| 30 | #define DISABLE_RGB_MATRIX_BAND_SPIRAL_SAT | ||
| 31 | #define DISABLE_RGB_MATRIX_SOLID_REACTIVE_WIDE | ||
| 32 | #define DISABLE_RGB_MATRIX_SOLID_REACTIVE_MULTIWIDE | ||
| 33 | #define DISABLE_RGB_MATRIX_SOLID_REACTIVE_CROSS | ||
| 34 | #define DISABLE_RGB_MATRIX_SOLID_REACTIVE_MULTICROSS | ||
| 35 | #define DISABLE_RGB_MATRIX_SOLID_REACTIVE_NEXUS | ||
| 36 | #define DISABLE_RGB_MATRIX_SOLID_REACTIVE_MULTINEXUS | ||
| 37 | #define DISABLE_RGB_MATRIX_SPLASH | ||
| 38 | #define DISABLE_RGB_MATRIX_MULTISPLASH | ||
| 39 | #define DISABLE_RGB_MATRIX_SOLID_SPLASH | ||
| 40 | #define DISABLE_RGB_MATRIX_SOLID_MULTISPLASH | ||
| 41 | #define DISABLE_RGB_MATRIX_DIGITAL_RAIN | ||
| 42 | #define DRIVER_ADDR_1 0b1010000 | ||
| 43 | #define DRIVER_ADDR_2 0b1010000 // this is here for compliancy reasons. | ||
| 44 | #define DRIVER_COUNT 2 | ||
| 45 | #define DRIVER_1_LED_TOTAL 52 | ||
| 46 | #define DRIVER_LED_TOTAL DRIVER_1_LED_TOTAL | ||
| 47 | #endif \ No newline at end of file | ||
diff --git a/keyboards/kbdfans/kbdmini/kbdmini.c b/keyboards/kbdfans/kbdmini/kbdmini.c new file mode 100644 index 000000000..b402eed64 --- /dev/null +++ b/keyboards/kbdfans/kbdmini/kbdmini.c | |||
| @@ -0,0 +1,96 @@ | |||
| 1 | #include "kbdmini.h" | ||
| 2 | #include "config.h" | ||
| 3 | const is31_led g_is31_leds[DRIVER_LED_TOTAL] = { | ||
| 4 | {0, B_9, A_9, C_9}, //LA33 | ||
| 5 | {0, B_10, A_10, C_10}, //LA37 | ||
| 6 | {0, B_11, A_11, C_11}, //LA41 | ||
| 7 | {0, B_12, A_12, C_12}, //LA45 | ||
| 8 | {0, B_13, A_13, C_13}, //LA49 | ||
| 9 | {0, B_14, A_14, C_14}, //LA53 | ||
| 10 | {0, B_15, A_15, C_15}, //LA57 | ||
| 11 | {0, B_6, A_6, C_6}, //LA21 | ||
| 12 | {0, B_5, A_5, C_5}, //LA17 | ||
| 13 | {0, B_4, A_4, C_4}, //LA13 | ||
| 14 | {0, B_3, A_3, C_3}, //LA9 | ||
| 15 | {0, B_2, A_2, C_2}, //LA5 | ||
| 16 | {0, B_1, A_1, C_1}, //LA1 | ||
| 17 | |||
| 18 | {0, E_9, D_9, F_9}, //LA34 | ||
| 19 | {0, E_10, D_10, F_10}, //LA38 | ||
| 20 | {0, E_11, D_11, F_11}, //LA42 | ||
| 21 | {0, E_12, D_12, F_12}, //LA46 | ||
| 22 | {0, E_13, D_13, F_13}, //LA50 | ||
| 23 | {0, E_14, D_14, F_14}, //LA54 | ||
| 24 | {0, E_15, D_15, F_15}, //LA58 | ||
| 25 | {0, E_6, D_6, F_6}, //LA22 | ||
| 26 | {0, E_5, D_5, F_5}, //LA18 | ||
| 27 | {0, E_4, D_4, F_4}, //LA14 | ||
| 28 | {0, E_3, D_3, F_3}, //LA10 | ||
| 29 | {0, E_2, D_2, F_2}, //LA6 | ||
| 30 | {0, E_1, D_1, F_1}, //LA2 | ||
| 31 | |||
| 32 | {0, H_9, G_9, I_9}, //LA35 | ||
| 33 | {0, H_10, G_10, I_10}, //LA39 | ||
| 34 | {0, H_11, G_11, I_11}, //LA43 | ||
| 35 | {0, H_12, G_12, I_12}, //LA47 | ||
| 36 | {0, H_13, G_13, I_13}, //LA51 | ||
| 37 | {0, H_14, G_14, I_14}, //LA55 | ||
| 38 | {0, H_15, G_15, I_15}, //LA59 | ||
| 39 | {0, H_6, G_6, I_6}, //LA23 | ||
| 40 | {0, H_5, G_5, I_5}, //LA19 | ||
| 41 | {0, H_4, G_4, I_4}, //LA15 | ||
| 42 | {0, H_3, G_3, I_3}, //LA11 | ||
| 43 | {0, H_2, G_2, I_2}, //LA7 | ||
| 44 | {0, H_1, G_1, I_1}, //LA3 | ||
| 45 | |||
| 46 | {0, K_9, J_9, L_9}, //LA36 | ||
| 47 | {0, K_10, J_10, L_10}, //LA40 | ||
| 48 | {0, K_11, J_11, L_11}, //LA44 | ||
| 49 | {0, K_12, J_12, L_12}, //LA48 | ||
| 50 | {0, K_13, J_13, L_13}, //LA52 | ||
| 51 | {0, K_14, J_14, L_14}, //LA56 | ||
| 52 | {0, K_15, J_15, L_15}, //LA60 | ||
| 53 | {0, K_6, J_6, L_6}, //LA24 | ||
| 54 | {0, K_5, J_5, L_5}, //LA20 | ||
| 55 | {0, K_4, J_4, L_4}, //LA16 | ||
| 56 | {0, K_3, J_3, L_3}, //LA12 | ||
| 57 | {0, K_2, J_2, L_2}, //LA8 | ||
| 58 | {0, K_1, J_1, L_1}//LA4 | ||
| 59 | }; | ||
| 60 | |||
| 61 | led_config_t g_led_config = { { | ||
| 62 | { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}, | ||
| 63 | { 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25}, | ||
| 64 | { 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38}, | ||
| 65 | { 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51} | ||
| 66 | }, { | ||
| 67 | { 0, 0 }, { 19, 0 }, { 38, 0 }, { 57, 0 }, { 76, 0 }, { 95, 0 }, { 114, 0 }, { 133, 0 }, { 152, 0 }, { 171, 0 }, { 190, 0 }, { 209, 0 }, { 224, 0 }, | ||
| 68 | { 0, 21 }, { 19, 21 }, { 38, 21 }, { 57, 21 }, { 76, 21 }, { 95, 21 }, { 114, 21 }, { 133, 21 }, { 152, 21 }, { 171, 21 }, { 190, 21 }, { 209, 21 }, { 224, 21 }, | ||
| 69 | { 0, 42 }, { 19, 42 }, { 38, 42 }, { 57, 42 }, { 76, 42 }, { 95, 42 }, { 114, 42 }, { 133, 42 }, { 152, 42 }, { 171, 42 }, { 190, 42 }, { 209, 42 }, { 224, 42 }, | ||
| 70 | { 0, 64 }, { 19, 64 }, { 38, 64 }, { 57, 64 }, { 76, 64 }, { 95, 64 }, { 114, 64 }, { 133, 64 }, { 152, 64 }, { 171, 64 }, { 190, 64 }, { 209, 64 }, { 224, 64 } | ||
| 71 | }, { | ||
| 72 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | ||
| 73 | 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, | ||
| 74 | 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, | ||
| 75 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 | ||
| 76 | } }; | ||
| 77 | void matrix_init_kb(void) { | ||
| 78 | matrix_init_user(); | ||
| 79 | } | ||
| 80 | void matrix_scan_kb(void) { | ||
| 81 | matrix_scan_user(); | ||
| 82 | } | ||
| 83 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { | ||
| 84 | return process_record_user(keycode, record); | ||
| 85 | } | ||
| 86 | void suspend_power_down_kb(void) | ||
| 87 | { | ||
| 88 | rgb_matrix_set_suspend_state(true); | ||
| 89 | suspend_power_down_user(); | ||
| 90 | } | ||
| 91 | |||
| 92 | void suspend_wakeup_init_kb(void) | ||
| 93 | { | ||
| 94 | rgb_matrix_set_suspend_state(false); | ||
| 95 | suspend_wakeup_init_user(); | ||
| 96 | } | ||
diff --git a/keyboards/kbdfans/kbdmini/kbdmini.h b/keyboards/kbdfans/kbdmini/kbdmini.h new file mode 100644 index 000000000..38596a569 --- /dev/null +++ b/keyboards/kbdfans/kbdmini/kbdmini.h | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | #pragma once | ||
| 2 | #include "quantum.h" | ||
| 3 | |||
| 4 | #define LAYOUT( \ | ||
| 5 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C,\ | ||
| 6 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C,\ | ||
| 7 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C,\ | ||
| 8 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C \ | ||
| 9 | ) { \ | ||
| 10 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C }, \ | ||
| 11 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C }, \ | ||
| 12 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C }, \ | ||
| 13 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C } \ | ||
| 14 | } | ||
| 15 | |||
diff --git a/keyboards/kbdfans/kbdmini/keymaps/default/keymap.c b/keyboards/kbdfans/kbdmini/keymaps/default/keymap.c new file mode 100644 index 000000000..9c8267147 --- /dev/null +++ b/keyboards/kbdfans/kbdmini/keymaps/default/keymap.c | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | #include QMK_KEYBOARD_H | ||
| 2 | #define _LAYER0 0 | ||
| 3 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 4 | [_LAYER0] = LAYOUT( | ||
| 5 | 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, | ||
| 6 | KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_BSPC, | ||
| 7 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_UP, KC_ENT, | ||
| 8 | KC_F5, KC_CAPS, KC_LCTL, KC_LGUI, KC_F1, KC_SPC,KC_F2, KC_RALT, KC_RGUI, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT), | ||
| 9 | }; | ||
diff --git a/keyboards/kbdfans/kbdmini/readme.md b/keyboards/kbdfans/kbdmini/readme.md new file mode 100644 index 000000000..e01684f13 --- /dev/null +++ b/keyboards/kbdfans/kbdmini/readme.md | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | # KBDMINI | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | Keyboard Maintainer: [DZTECH](https://github.com/moyi4681) | ||
| 6 | Hardware Supported: KBDMINI | ||
| 7 | Hardware Availability: [KBDFans](https://kbdfans.cn/) | ||
| 8 | |||
| 9 | Make example for this keyboard (after setting up your build environment): | ||
| 10 | |||
| 11 | make kbdfans/kbdmini:default | ||
| 12 | |||
| 13 | See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). | ||
diff --git a/keyboards/kbdfans/kbdmini/rules.mk b/keyboards/kbdfans/kbdmini/rules.mk new file mode 100644 index 000000000..28178d658 --- /dev/null +++ b/keyboards/kbdfans/kbdmini/rules.mk | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32u4 | ||
| 3 | |||
| 4 | # Bootloader selection | ||
| 5 | # Teensy halfkay | ||
| 6 | # Pro Micro caterina | ||
| 7 | # Atmel DFU atmel-dfu | ||
| 8 | # LUFA DFU lufa-dfu | ||
| 9 | # QMK DFU qmk-dfu | ||
| 10 | # ATmega32A bootloadHID | ||
| 11 | # ATmega328P USBasp | ||
| 12 | BOOTLOADER = atmel-dfu | ||
| 13 | |||
| 14 | # Build Options | ||
| 15 | # change yes to no to disable | ||
| 16 | # | ||
| 17 | BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration | ||
| 18 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
| 19 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 20 | CONSOLE_ENABLE = no # Console for debug | ||
| 21 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
| 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
| 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 25 | NKRO_ENABLE = yes # USB Nkey Rollover | ||
| 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
| 27 | MIDI_ENABLE = no # MIDI support | ||
| 28 | UNICODE_ENABLE = no # Unicode | ||
| 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | ||
| 30 | AUDIO_ENABLE = no # Audio output on port C6 | ||
| 31 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | ||
| 32 | RGB_MATRIX_ENABLE = IS31FL3733 # Use RGB matrix | ||
| 33 | NO_USB_STARTUP_CHECK = no # Disable initialization only when usb is plugged in | ||
