aboutsummaryrefslogtreecommitdiff
path: root/keyboards/frooastboard/nano/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/frooastboard/nano/config.h')
-rw-r--r--keyboards/frooastboard/nano/config.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/keyboards/frooastboard/nano/config.h b/keyboards/frooastboard/nano/config.h
new file mode 100644
index 000000000..48af8e7e9
--- /dev/null
+++ b/keyboards/frooastboard/nano/config.h
@@ -0,0 +1,52 @@
1/* Copyright 2021-2022 frooastside
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 3 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#pragma once
18
19#include "config_common.h"
20
21/* USB Device descriptor parameter */
22#define MANUFACTURER frooastside
23#define PRODUCT Frooastboard Nano
24
25/* key matrix size */
26#define MATRIX_ROWS 2
27#define MATRIX_COLS 2
28
29#define BOOTMAGIC_LITE_ROW 1
30#define BOOTMAGIC_LITE_COLUMN 1
31
32#define RGB_DI_PIN B4
33#define RGBLED_NUM 8
34
35#define RGBLIGHT_SLEEP
36
37#define RGBLIGHT_HUE_STEP 8
38#define RGBLIGHT_SAT_STEP 8
39#define RGBLIGHT_VAL_STEP 8
40
41#define RGBLIGHT_DEFAULT_HUE 234
42
43#define RGBLIGHT_LIMIT_VAL 255
44#define RGBLIGHT_DEFAULT_VAL 190
45
46#define RGBLIGHT_EFFECT_RAINBOW_MOOD
47#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
48#define RGBLIGHT_EFFECT_TWINKLE
49#define RGBLIGHT_EFFECT_BREATHING
50#define RGBLIGHT_EFFECT_SNAKE
51
52#define RGBLIGHT_DEFAULT_MODE RGBLIGHT_MODE_RAINBOW_MOOD + 2