diff options
author | moyi4681 <moyi4681@users.noreply.github.com> | 2019-05-29 02:20:39 +0800 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-05-28 11:20:39 -0700 |
commit | 4d46489a2ac4ff7099e9b7498e34c6201f0b14cb (patch) | |
tree | a3e7e3e5345086b835acca0bb6cfb12c185cb57b /keyboards/geekboards/tester/config.h | |
parent | ff6a57c3c320a2c73c0040337c677d8b2455c3ff (diff) | |
download | qmk_firmware-4d46489a2ac4ff7099e9b7498e34c6201f0b14cb.tar.gz qmk_firmware-4d46489a2ac4ff7099e9b7498e34c6201f0b14cb.zip |
[Keyboard] add geekboards 8key macro-pad tester (#5940)
* add geekboards 8key macro-pad tester
* Update readme.md
* Update keyboards/geekboards/tester/rules.mk
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Update keyboards/geekboards/tester/keymaps/default/keymap.c
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Update keyboards/geekboards/tester/keymaps/default/keymap.c
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Update keyboards/geekboards/tester/keymaps/default/keymap.c
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Update keyboards/geekboards/tester/keymaps/default/keymap.c
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Update keymap.c
* Update keyboards/geekboards/tester/readme.md
Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com>
* Update keyboards/geekboards/tester/readme.md
Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com>
* Update keyboards/geekboards/tester/readme.md
Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com>
* Update keyboards/geekboards/tester/readme.md
Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com>
* Update keyboards/geekboards/tester/readme.md
Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com>
* Update readme.md
* Update tester.c
* Update keyboards/geekboards/tester/config.h
Co-Authored-By: Drashna Jaelre <drashna@live.com>
* Update keyboards/geekboards/tester/rules.mk
Co-Authored-By: Drashna Jaelre <drashna@live.com>
* Update keyboards/geekboards/tester/keymaps/default/keymap.c
Co-Authored-By: Drashna Jaelre <drashna@live.com>
* Update keyboards/geekboards/tester/keymaps/default/keymap.c
Co-Authored-By: Drashna Jaelre <drashna@live.com>
Diffstat (limited to 'keyboards/geekboards/tester/config.h')
-rw-r--r-- | keyboards/geekboards/tester/config.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/keyboards/geekboards/tester/config.h b/keyboards/geekboards/tester/config.h new file mode 100644 index 000000000..ac67877ff --- /dev/null +++ b/keyboards/geekboards/tester/config.h | |||
@@ -0,0 +1,39 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include "config_common.h" | ||
4 | |||
5 | |||
6 | #define VENDOR_ID 0xFEED | ||
7 | #define PRODUCT_ID 0x1319 | ||
8 | #define DEVICE_VER 0x0001 | ||
9 | #define MANUFACTURER Geekboards | ||
10 | #define PRODUCT Geekboards Tester | ||
11 | #define DESCRIPTION Geekboards 8-keys macropad | ||
12 | |||
13 | |||
14 | #define MATRIX_ROWS 2 | ||
15 | #define MATRIX_COLS 4 | ||
16 | |||
17 | #define MATRIX_ROW_PINS { B0, D4} | ||
18 | #define MATRIX_COL_PINS { F7, F6, D2, D3} | ||
19 | #define UNUSED_PINS | ||
20 | |||
21 | #define DIODE_DIRECTION COL2ROW | ||
22 | #define LOCKING_SUPPORT_ENABL | ||
23 | #define LOCKING_RESYNC_ENABLE | ||
24 | |||
25 | #define DEBOUNCE 3 | ||
26 | #define RGB_DISABLE_AFTER_TIMEOUT 0 | ||
27 | #define RGB_DISABLE_WHEN_USB_SUSPENDED true | ||
28 | #define RGB_MATRIX_KEYPRESSES | ||
29 | #define DISABLE_RGB_MATRIX_SPLASH | ||
30 | #define DISABLE_RGB_MATRIX_MULTISPLASH | ||
31 | #define DISABLE_RGB_MATRIX_SOLID_SPLASH | ||
32 | #define DISABLE_RGB_MATRIX_SOLID_MULTISPLASH | ||
33 | #define DRIVER_ADDR_1 0b1110100 | ||
34 | #define DRIVER_ADDR_2 0b1110101 | ||
35 | |||
36 | #define DRIVER_COUNT 2 | ||
37 | #define DRIVER_1_LED_TOTAL 8 | ||
38 | #define DRIVER_2_LED_TOTAL 0 | ||
39 | #define DRIVER_LED_TOTAL (DRIVER_1_LED_TOTAL + DRIVER_2_LED_TOTAL) | ||