]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/hotdox/config.h
[Keyboard] fixed pins for numpad_5x4 layout (#6311)
[qmk_firmware.git] / keyboards / hotdox / config.h
1 #pragma once
2
3 #include "config_common.h"
4
5 /* USB Device descriptor parameter */
6 #define VENDOR_ID       0xFEED
7 #define PRODUCT_ID      0xE11D
8
9 #define DEVICE_VER      0x0001
10 #define MANUFACTURER    Z.P.Z.O.
11 #define PRODUCT         HotDox
12 #define DESCRIPTION     QMK keyboard firmware for HotDox
13
14 /* key matrix size */
15 #define MATRIX_ROWS 6
16 #define MATRIX_COLS 14
17
18 #define MOUSEKEY_INTERVAL       20
19 #define MOUSEKEY_DELAY          0
20 #define MOUSEKEY_TIME_TO_MAX    60
21 #define MOUSEKEY_MAX_SPEED      7
22 #define MOUSEKEY_WHEEL_DELAY    0
23
24 #define TAPPING_TOGGLE  1
25
26 /* define if matrix has ghost */
27 //#define MATRIX_HAS_GHOST
28
29 #define TAPPING_TERM    200
30 #define IGNORE_MOD_TAP_INTERRUPT // this makes it possible to do rolling combos (zx) with keys that convert to other keys on hold (z becomes ctrl when you hold it, and when this option isn't enabled, z rapidly followed by x actually sends Ctrl-x. That's bad.)
31
32 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
33 #define LOCKING_SUPPORT_ENABLE
34 /* Locking resynchronize hack */
35 #define LOCKING_RESYNC_ENABLE
36
37 /* key combination for command */
38 #ifndef IS_COMMAND
39 #define IS_COMMAND() ( \
40     get_mods() == MOD_MASK_CTRL || \
41     get_mods() == MOD_MASK_SHIFT   \
42 )
43 #endif
44
45 #define BACKLIGHT_PIN B7
46 /* number of backlight levels */
47 #define BACKLIGHT_LEVELS 3
48
49 #define LED_BRIGHTNESS_LO       15
50 #define LED_BRIGHTNESS_HI       255
51
52 /* fix space cadet rollover issue */
53 #define DISABLE_SPACE_CADET_ROLLOVER
54
55 /* Set 0 if debouncing isn't needed */
56 #define DEBOUNCE    5
57
58 #define USB_MAX_POWER_CONSUMPTION 500
59
60 /*
61  * Feature disable options
62  *  These options are also useful to firmware size reduction.
63  */
64
65 /* disable debug print */
66 // #define NO_DEBUG
67
68 /* disable print */
69 // #define NO_PRINT
70
71 /* disable action features */
72 //#define NO_ACTION_LAYER
73 //#define NO_ACTION_TAPPING
74 //#define NO_ACTION_ONESHOT
75 //#define NO_ACTION_MACRO
76 //#define NO_ACTION_FUNCTION
77 //#define DEBUG_MATRIX_SCAN_RATE
78