aboutsummaryrefslogtreecommitdiff
path: root/keyboards/frooastboard/nano
diff options
context:
space:
mode:
authorSimon <47527944+Frooastside@users.noreply.github.com>2022-02-17 17:59:12 +0100
committerGitHub <noreply@github.com>2022-02-17 08:59:12 -0800
commit2d12eacb4b9bf1b3d331cec0bd06fd1a58a5d217 (patch)
treea711b9af8a3725bb8d6a4342c080c59fce8b9e5d /keyboards/frooastboard/nano
parent7dd993fb066ad34623bc2875b7b609de1732a027 (diff)
downloadqmk_firmware-2d12eacb4b9bf1b3d331cec0bd06fd1a58a5d217.tar.gz
qmk_firmware-2d12eacb4b9bf1b3d331cec0bd06fd1a58a5d217.zip
[Keyboard] Renamed Frooastboard to Frooastboard Nano (#16373)
Diffstat (limited to 'keyboards/frooastboard/nano')
-rw-r--r--keyboards/frooastboard/nano/config.h52
-rw-r--r--keyboards/frooastboard/nano/info.json42
-rw-r--r--keyboards/frooastboard/nano/keymaps/default/keymap.c47
-rw-r--r--keyboards/frooastboard/nano/keymaps/safe_mode/keymap.c43
-rw-r--r--keyboards/frooastboard/nano/keymaps/via/config.h30
-rw-r--r--keyboards/frooastboard/nano/keymaps/via/keymap.c27
-rw-r--r--keyboards/frooastboard/nano/keymaps/via/rules.mk2
-rw-r--r--keyboards/frooastboard/nano/nano.c17
-rw-r--r--keyboards/frooastboard/nano/nano.h27
-rw-r--r--keyboards/frooastboard/nano/readme.md19
-rw-r--r--keyboards/frooastboard/nano/rules.mk18
11 files changed, 324 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
diff --git a/keyboards/frooastboard/nano/info.json b/keyboards/frooastboard/nano/info.json
new file mode 100644
index 000000000..7c594187e
--- /dev/null
+++ b/keyboards/frooastboard/nano/info.json
@@ -0,0 +1,42 @@
1{
2 "keyboard_name": "Frooastboard Nano",
3 "url": "https://github.com/qmk/qmk_firmware/tree/master/keyboards/frooastboard/nano",
4 "maintainer": "frooastside",
5 "debounce": 5,
6 "diode_direction": "COL2ROW",
7 "layouts": {
8 "LAYOUT": {
9 "layout": [
10 {
11 "label": "Z",
12 "x": 0,
13 "y": 0
14 },
15 {
16 "label": "X",
17 "x": 1,
18 "y": 0
19 },
20 {
21 "label": "Esc",
22 "x": 0,
23 "y": 1
24 },
25 {
26 "label": "~",
27 "x": 1,
28 "y": 1
29 }
30 ]
31 }
32 },
33 "matrix_pins": {
34 "rows": ["B0", "B1"],
35 "cols": ["B2", "B3"]
36 },
37 "usb": {
38 "vid": "0x4642",
39 "pid": "0x6F21",
40 "device_ver": "0x0001"
41 }
42}
diff --git a/keyboards/frooastboard/nano/keymaps/default/keymap.c b/keyboards/frooastboard/nano/keymaps/default/keymap.c
new file mode 100644
index 000000000..aa3ed88da
--- /dev/null
+++ b/keyboards/frooastboard/nano/keymaps/default/keymap.c
@@ -0,0 +1,47 @@
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#include QMK_KEYBOARD_H
18
19const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
20 [0] = LAYOUT(
21 KC_Z, KC_X,
22 LT(1, KC_ESC), KC_TILD),
23
24 [1] = LAYOUT(
25 KC_F23, KC_F24,
26 KC_TRNS, TO(2)),
27
28 [2] = LAYOUT(
29 RGB_TOG, RGB_MOD,
30 TO(3), TO(0)),
31
32 [3] = LAYOUT(
33 RGB_HUD, RGB_HUI,
34 TO(4), TO(2)),
35
36 [4] = LAYOUT(
37 RGB_SAD, RGB_SAI,
38 TO(5), TO(3)),
39
40 [5] = LAYOUT(
41 RGB_VAD, RGB_VAI,
42 TO(6), TO(4)),
43
44 [6] = LAYOUT(
45 KC_TRNS, KC_TRNS,
46 RESET, TO(5))
47};
diff --git a/keyboards/frooastboard/nano/keymaps/safe_mode/keymap.c b/keyboards/frooastboard/nano/keymaps/safe_mode/keymap.c
new file mode 100644
index 000000000..d237438da
--- /dev/null
+++ b/keyboards/frooastboard/nano/keymaps/safe_mode/keymap.c
@@ -0,0 +1,43 @@
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#include QMK_KEYBOARD_H
18
19const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
20 [0] = LAYOUT(
21 KC_Z, KC_X,
22 TO(1), KC_TILD),
23
24 [1] = LAYOUT(
25 RGB_TOG, RGB_MOD,
26 TO(2), TO(0)),
27
28 [2] = LAYOUT(
29 RGB_HUD, RGB_HUI,
30 TO(3), TO(1)),
31
32 [3] = LAYOUT(
33 RGB_SAD, RGB_SAI,
34 TO(4), TO(2)),
35
36 [4] = LAYOUT(
37 RGB_VAD, RGB_VAI,
38 TO(5), TO(3)),
39
40 [5] = LAYOUT(
41 KC_TRNS, KC_TRNS,
42 RESET, TO(4))
43};
diff --git a/keyboards/frooastboard/nano/keymaps/via/config.h b/keyboards/frooastboard/nano/keymaps/via/config.h
new file mode 100644
index 000000000..8c3969569
--- /dev/null
+++ b/keyboards/frooastboard/nano/keymaps/via/config.h
@@ -0,0 +1,30 @@
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#define RGBLIGHT_EFFECT_BREATHING
20#define RGBLIGHT_EFFECT_RAINBOW_MOOD
21#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
22#define RGBLIGHT_EFFECT_SNAKE
23#define RGBLIGHT_EFFECT_KNIGHT
24#define RGBLIGHT_EFFECT_CHRISTMAS
25#define RGBLIGHT_EFFECT_STATIC_GRADIENT
26#define RGBLIGHT_EFFECT_RGB_TEST
27#define RGBLIGHT_EFFECT_ALTERNATING
28#define RGBLIGHT_EFFECT_TWINKLE
29
30#define DYNAMIC_KEYMAP_LAYER_COUNT 2
diff --git a/keyboards/frooastboard/nano/keymaps/via/keymap.c b/keyboards/frooastboard/nano/keymaps/via/keymap.c
new file mode 100644
index 000000000..bddd16bae
--- /dev/null
+++ b/keyboards/frooastboard/nano/keymaps/via/keymap.c
@@ -0,0 +1,27 @@
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#include QMK_KEYBOARD_H
18
19const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
20 [0] = LAYOUT(
21 KC_Z, KC_X,
22 LT(1, KC_ESC), KC_TILD),
23
24 [1] = LAYOUT(
25 KC_F23, KC_F24,
26 KC_TRNS, RGB_TOG)
27};
diff --git a/keyboards/frooastboard/nano/keymaps/via/rules.mk b/keyboards/frooastboard/nano/keymaps/via/rules.mk
new file mode 100644
index 000000000..36b7ba9cb
--- /dev/null
+++ b/keyboards/frooastboard/nano/keymaps/via/rules.mk
@@ -0,0 +1,2 @@
1VIA_ENABLE = yes
2LTO_ENABLE = yes
diff --git a/keyboards/frooastboard/nano/nano.c b/keyboards/frooastboard/nano/nano.c
new file mode 100644
index 000000000..584176a4e
--- /dev/null
+++ b/keyboards/frooastboard/nano/nano.c
@@ -0,0 +1,17 @@
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#include "nano.h"
diff --git a/keyboards/frooastboard/nano/nano.h b/keyboards/frooastboard/nano/nano.h
new file mode 100644
index 000000000..76d1a42ea
--- /dev/null
+++ b/keyboards/frooastboard/nano/nano.h
@@ -0,0 +1,27 @@
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 "quantum.h"
20
21#define LAYOUT( \
22 K00, K01, \
23 K10, K11 \
24) { \
25 { K00, K01 }, \
26 { K10, K11 } \
27}
diff --git a/keyboards/frooastboard/nano/readme.md b/keyboards/frooastboard/nano/readme.md
new file mode 100644
index 000000000..d67f17483
--- /dev/null
+++ b/keyboards/frooastboard/nano/readme.md
@@ -0,0 +1,19 @@
1# Frooastboard Nano
2
3![Frooastboard Nano](https://i.imgur.com/f26O8JLh.jpg)
4
5* Keyboard Maintainer: [Frooastside](https://github.com/frooastside)
6* Hardware Supported: Frooastboard Nano
7* Hardware Availability: https://github.com/Frooastside/Frooastboard
8
9**Reset Key:** Hold down the key located at `K00`, commonly programmed as ESCAPE while plugging in the keyboard. (If via is used it is the key located at `K10`.)
10
11Make example for this keyboard (after setting up your build environment):
12
13 make frooastboard/nano:default
14
15Flashing example for this keyboard:
16
17 make frooastboard/nano:default:flash
18
19See 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/frooastboard/nano/rules.mk b/keyboards/frooastboard/nano/rules.mk
new file mode 100644
index 000000000..bef90c50a
--- /dev/null
+++ b/keyboards/frooastboard/nano/rules.mk
@@ -0,0 +1,18 @@
1# MCU name
2MCU = atmega32u2
3
4# Bootloader selection
5BOOTLOADER = atmel-dfu
6
7# Build Options
8# change yes to no to disable
9#
10BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
11MOUSEKEY_ENABLE = no # Mouse keys
12EXTRAKEY_ENABLE = no # Audio control and System control
13CONSOLE_ENABLE = no # Console for debug
14COMMAND_ENABLE = no # Commands for debug and configuration
15NKRO_ENABLE = yes # Enable N-Key Rollover
16BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
17RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
18AUDIO_ENABLE = no # Audio output