aboutsummaryrefslogtreecommitdiff
path: root/keyboards/abacus/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/abacus/config.h')
-rw-r--r--keyboards/abacus/config.h108
1 files changed, 108 insertions, 0 deletions
diff --git a/keyboards/abacus/config.h b/keyboards/abacus/config.h
new file mode 100644
index 000000000..eee2f3f91
--- /dev/null
+++ b/keyboards/abacus/config.h
@@ -0,0 +1,108 @@
1/*
2Copyright 2020 nickolaij
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#pragma once
19
20#include "config_common.h"
21
22/* USB Device descriptor parameter */
23#define VENDOR_ID 0xFEED
24#define PRODUCT_ID 0x0000
25#define DEVICE_VER 0x0001
26#define MANUFACTURER nickolaij
27#define PRODUCT abacus
28
29/* key matrix size */
30#define MATRIX_ROWS 4
31#define MATRIX_COLS 12
32
33/*
34 * Keyboard Matrix Assignments
35 *
36 * Change this to how you wired your keyboard
37 * COLS: AVR pins used for columns, left to right
38 * ROWS: AVR pins used for rows, top to bottom
39 * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
40 * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
41 *
42 */
43#define MATRIX_ROW_PINS { D3, D2, D4, C6 }
44#define MATRIX_COL_PINS { F4, F5, F6, F7, B1, D7, B3, E6, B2, B4, B6, B5}
45#define UNUSED_PINS {B0}
46
47#define DIP_SWITCH_PINS { D0 }
48
49#define ENCODERS_PAD_A { F1 }
50#define ENCODERS_PAD_B { F0 }
51#define ENCODER_RESOLUTION 4
52
53/* COL2ROW, ROW2COL*/
54#define DIODE_DIRECTION COL2ROW
55#define RGB_DI_PIN D1
56
57#ifdef RGB_DI_PIN
58# define RGBLED_NUM 17
59# define RGBLIGHT_HUE_STEP 8
60# define RGBLIGHT_SAT_STEP 8
61# define RGBLIGHT_VAL_STEP 8
62# define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */
63# define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */
64/*== choose animations ==*/
65# define RGBLIGHT_EFFECT_BREATHING
66# define RGBLIGHT_EFFECT_RAINBOW_MOOD
67# define RGBLIGHT_EFFECT_RAINBOW_SWIRL
68# define RGBLIGHT_EFFECT_SNAKE
69# define RGBLIGHT_EFFECT_KNIGHT
70# define RGBLIGHT_EFFECT_STATIC_GRADIENT
71/*== customize breathing effect ==*/
72/*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/
73# define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64
74/*==== use exp() and sin() ====*/
75# define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7
76# define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255
77#endif
78
79/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
80#define DEBOUNCE 5
81
82/* define if matrix has ghost (lacks anti-ghosting diodes) */
83//#define MATRIX_HAS_GHOST
84
85/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
86#define LOCKING_SUPPORT_ENABLE
87/* Locking resynchronize hack */
88#define LOCKING_RESYNC_ENABLE
89
90/*
91 * Feature disable options
92 * These options are also useful to firmware size reduction.
93 */
94
95/* disable debug print */
96//#define NO_DEBUG
97
98/* disable print */
99//#define NO_PRINT
100
101/* disable action features */
102//#define NO_ACTION_LAYER
103//#define NO_ACTION_TAPPING
104//#define NO_ACTION_ONESHOT
105
106/* disable these deprecated features by default */
107#define NO_ACTION_MACRO
108#define NO_ACTION_FUNCTION