summary refs log tree commit diff
diff options
context:
space:
mode:
authorShandon Anderson <CheeseL0ver@users.noreply.github.com>2023-09-18 21:00:11 -0400
committerGitHub <noreply@github.com>2023-09-18 18:00:11 -0700
commitef31109ad2e70d0f037d8902eb61496d490eba73 (patch)
tree21ebea2e8937c363df4da98f0dce9f8d4453b4ad
parent16f2a3e2f8235b8325fb3acf77801de088782150 (diff)
[Keyboard] Add riot pad (#22060)
Co-authored-by: ShandonCodes <shandon@shandon.codes>
-rw-r--r--keyboards/riot_pad/config.h8
-rw-r--r--keyboards/riot_pad/halconf.h7
-rw-r--r--keyboards/riot_pad/info.json56
-rw-r--r--keyboards/riot_pad/keymaps/default/keymap.c22
-rw-r--r--keyboards/riot_pad/keymaps/via/keymap.c22
-rw-r--r--keyboards/riot_pad/keymaps/via/rules.mk1
-rw-r--r--keyboards/riot_pad/mcuconf.h8
-rw-r--r--keyboards/riot_pad/readme.md25
-rw-r--r--keyboards/riot_pad/rules.mk1
9 files changed, 150 insertions, 0 deletions
diff --git a/keyboards/riot_pad/config.h b/keyboards/riot_pad/config.h
new file mode 100644
index 0000000000..97dcb1de3c
--- /dev/null
+++ b/keyboards/riot_pad/config.h
@@ -0,0 +1,8 @@
+// Copyright 2023 ShandonCodes (@ShandonCodes)
+// SPDX-License-Identifier: GPL-2.0-or-later
+#pragma once
+
+#define WS2812_SPI SPID1
+#define WS2812_SPI_MOSI_PAL_MODE 0
+#define WS2812_SPI_SCK_PAL_MODE 0
+#define WS2812_SPI_SCK_PIN A5
diff --git a/keyboards/riot_pad/halconf.h b/keyboards/riot_pad/halconf.h
new file mode 100644
index 0000000000..555a609029
--- /dev/null
+++ b/keyboards/riot_pad/halconf.h
@@ -0,0 +1,7 @@
+// Copyright 2023 ShandonCodes (@ShandonCodes)
+// SPDX-License-Identifier: GPL-2.0-or-later
+#pragma once
+
+#define HAL_USE_SPI TRUE
+
+#include_next <halconf.h>
\ No newline at end of file
diff --git a/keyboards/riot_pad/info.json b/keyboards/riot_pad/info.json
new file mode 100644
index 0000000000..0798a4de60
--- /dev/null
+++ b/keyboards/riot_pad/info.json
@@ -0,0 +1,56 @@
+{
+    "manufacturer": "ShandonCodes",
+    "keyboard_name": "RiotPad",
+    "maintainer": "ShandonCodes",
+    "bootloader": "stm32-dfu",
+    "diode_direction": "COL2ROW",
+    "features": {
+        "bootmagic": true,
+        "command": false,
+        "console": false,
+        "nkro": true,
+        "rgblight": true
+    },
+    "matrix_pins": {
+        "cols": ["B14", "A8", "A9"],
+        "rows": ["B13", "B15"]
+    },
+    "processor": "STM32F072",
+    "rgblight": {
+        "animations": {
+            "alternating": true,
+            "breathing": true,
+            "christmas": true,
+            "knight": true,
+            "rainbow_mood": true,
+            "rainbow_swirl": true,
+            "snake": true,
+            "static_gradient": true,
+            "twinkle": true
+        },
+        "led_count": 12
+    },
+    "url": "",
+    "usb": {
+        "device_version": "1.0.0",
+        "pid": "0x1000",
+        "vid": "0x7877"
+    },
+    "ws2812": {
+        "driver": "spi",
+        "pin": "A7"
+    },
+    "community_layouts": ["ortho_2x3"],
+    "layouts": {
+        "LAYOUT_ortho_2x3": {
+            "layout": [
+                {"matrix": [0, 0], "x": 0, "y": 0},
+                {"matrix": [0, 1], "x": 1, "y": 0},
+                {"matrix": [0, 2], "x": 2, "y": 0},
+                {"matrix": [1, 0], "x": 0, "y": 1},
+                {"matrix": [1, 1], "x": 1, "y": 1},
+                {"matrix": [1, 2], "x": 2, "y": 1}
+            ]
+        }
+    }
+}
diff --git a/keyboards/riot_pad/keymaps/default/keymap.c b/keyboards/riot_pad/keymaps/default/keymap.c
new file mode 100644
index 0000000000..0e6eda839e
--- /dev/null
+++ b/keyboards/riot_pad/keymaps/default/keymap.c
@@ -0,0 +1,22 @@
+// Copyright 2023 ShandonCodes (@ShandonCodes)
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#include QMK_KEYBOARD_H
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+    /*
+     * ┌───┬───┬────┐
+     * │ A │ B │ C  │
+     * ├───┼───┼────┤
+     * │ D │ E │ Fn │
+     * └───┴───┴────┘
+     */
+    [0] = LAYOUT_ortho_2x3(
+        KC_A,    KC_B,    KC_C,
+        KC_D,    KC_E,    MO(1)
+    ),
+    [1] = LAYOUT_ortho_2x3(
+        RGB_MOD,    RGB_RMOD,    RGB_TOG,
+        RGB_VAI,    RGB_VAD,    KC_TRNS
+    )
+};
diff --git a/keyboards/riot_pad/keymaps/via/keymap.c b/keyboards/riot_pad/keymaps/via/keymap.c
new file mode 100644
index 0000000000..0e6eda839e
--- /dev/null
+++ b/keyboards/riot_pad/keymaps/via/keymap.c
@@ -0,0 +1,22 @@
+// Copyright 2023 ShandonCodes (@ShandonCodes)
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#include QMK_KEYBOARD_H
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+    /*
+     * ┌───┬───┬────┐
+     * │ A │ B │ C  │
+     * ├───┼───┼────┤
+     * │ D │ E │ Fn │
+     * └───┴───┴────┘
+     */
+    [0] = LAYOUT_ortho_2x3(
+        KC_A,    KC_B,    KC_C,
+        KC_D,    KC_E,    MO(1)
+    ),
+    [1] = LAYOUT_ortho_2x3(
+        RGB_MOD,    RGB_RMOD,    RGB_TOG,
+        RGB_VAI,    RGB_VAD,    KC_TRNS
+    )
+};
diff --git a/keyboards/riot_pad/keymaps/via/rules.mk b/keyboards/riot_pad/keymaps/via/rules.mk
new file mode 100644
index 0000000000..036bd6d1c3
--- /dev/null
+++ b/keyboards/riot_pad/keymaps/via/rules.mk
@@ -0,0 +1 @@
+VIA_ENABLE = yes
\ No newline at end of file
diff --git a/keyboards/riot_pad/mcuconf.h b/keyboards/riot_pad/mcuconf.h
new file mode 100644
index 0000000000..7c3eec4802
--- /dev/null
+++ b/keyboards/riot_pad/mcuconf.h
@@ -0,0 +1,8 @@
+// Copyright 2023 ShandonCodes (@ShandonCodes)
+// SPDX-License-Identifier: GPL-2.0-or-later
+#pragma once
+
+#include_next <mcuconf.h>
+
+#undef STM32_SPI_USE_SPI1
+#define STM32_SPI_USE_SPI1 TRUE
\ No newline at end of file
diff --git a/keyboards/riot_pad/readme.md b/keyboards/riot_pad/readme.md
new file mode 100644
index 0000000000..c2c3ffd4be
--- /dev/null
+++ b/keyboards/riot_pad/readme.md
@@ -0,0 +1,25 @@
+# riot_pad
+
+![riot_pad](https://i.imgur.com/zH6H3pSh.png)
+
+A RGB lovin', 6 key macropad.
+
+* Keyboard Maintainer: [ShandonCodes](https://github.com/ShandonCodes)
+* Hardware Supported: RiotPad PCB
+* Hardware Availability: [Limited Groupbuy](https://store.shandon.codes/)
+
+Make example for this keyboard (after setting up your build environment):
+
+    make riot_pad:default
+
+Flashing example for this keyboard:
+
+    make riot_pad:default:flash
+
+See 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).
+
+## Bootloader
+
+Enter the bootloader in 3 ways:
+
+* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (top left key) and plug in the keyboard
diff --git a/keyboards/riot_pad/rules.mk b/keyboards/riot_pad/rules.mk
new file mode 100644
index 0000000000..7ff128fa69
--- /dev/null
+++ b/keyboards/riot_pad/rules.mk
@@ -0,0 +1 @@
+# This file intentionally left blank
\ No newline at end of file