summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Baker <76887060+ryanbaekr@users.noreply.github.com>2022-11-28 00:46:40 -0500
committerGitHub <noreply@github.com>2022-11-28 05:46:40 +0000
commitd27b852fccf6165730b5a013e49ae69ab3124c56 (patch)
treede4f077b817a03f24e1a5f085d71d7ee9a0e8367
parent690eb4a4533940bd57646ba2021179840273eb0f (diff)
new keyboard rb1 (#18164)
* rb1 * Update keymap.c * Update keyboards/ryanbaekr/rb1/info.json Co-authored-by: Ryan <fauxpark@gmail.com> * Delete rb1.c * Delete rb1.h * Update keyboards/ryanbaekr/rb1/config.h Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/ryanbaekr/rb1/config.h Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/ryanbaekr/rb1/config.h Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Ryan <fauxpark@gmail.com>
-rw-r--r--keyboards/ryanbaekr/rb1/config.h66
-rw-r--r--keyboards/ryanbaekr/rb1/info.json18
-rw-r--r--keyboards/ryanbaekr/rb1/keymaps/default/keymap.c22
-rw-r--r--keyboards/ryanbaekr/rb1/keymaps/default/readme.md1
-rw-r--r--keyboards/ryanbaekr/rb1/readme.md15
-rw-r--r--keyboards/ryanbaekr/rb1/rules.mk18
-rw-r--r--keyboards/ryanbaekr/rb69/info.json6
-rw-r--r--keyboards/ryanbaekr/rb86/info.json6
8 files changed, 146 insertions, 6 deletions
diff --git a/keyboards/ryanbaekr/rb1/config.h b/keyboards/ryanbaekr/rb1/config.h
new file mode 100644
index 0000000000..1e1c0de880
--- /dev/null
+++ b/keyboards/ryanbaekr/rb1/config.h
@@ -0,0 +1,66 @@
+/*
+Copyright 2022 ryanbaekr
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#pragma once
+
+#include "config_common.h"
+
+/*
+ * Keyboard Matrix Assignments
+ *
+ * Change this to how you wired your keyboard
+ * DIRECT: AVR pins used for keys
+ *
+ */
+#define DIRECT_PINS {{ B1 }}
+
+/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
+#define DEBOUNCE 5
+
+/* define if matrix has ghost (lacks anti-ghosting diodes) */
+//#define MATRIX_HAS_GHOST
+
+/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
+#define LOCKING_SUPPORT_ENABLE
+/* Locking resynchronize hack */
+#define LOCKING_RESYNC_ENABLE
+
+/* If defined, GRAVE_ESC will always act as ESC when CTRL is held.
+ * This is userful for the Windows task manager shortcut (ctrl+shift+esc).
+ */
+// #define GRAVE_ESC_CTRL_OVERRIDE
+
+/*
+ * Force NKRO
+ *
+ * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
+ * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
+ * makefile for this to work.)
+ *
+ * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
+ * until the next keyboard reset.
+ *
+ * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
+ * fully operational during normal computer usage.
+ *
+ * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
+ * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
+ * bootmagic, NKRO mode will always be enabled until it is toggled again during a
+ * power-up.
+ *
+ */
+//#define FORCE_NKRO
diff --git a/keyboards/ryanbaekr/rb1/info.json b/keyboards/ryanbaekr/rb1/info.json
new file mode 100644
index 0000000000..07a76e578c
--- /dev/null
+++ b/keyboards/ryanbaekr/rb1/info.json
@@ -0,0 +1,18 @@
+{
+ "keyboard_name": "rb1",
+ "manufacturer": "ryanbaekr",
+ "url": "",
+ "maintainer": "ryanbaekr",
+ "usb": {
+ "vid": "0x7262",
+ "pid": "0x0001",
+ "device_version": "0.0.3"
+ },
+ "layouts": {
+ "LAYOUT": {
+ "layout": [
+ {"matrix": [0, 0], "x":0, "y":0}
+ ]
+ }
+ }
+}
diff --git a/keyboards/ryanbaekr/rb1/keymaps/default/keymap.c b/keyboards/ryanbaekr/rb1/keymaps/default/keymap.c
new file mode 100644
index 0000000000..06ddc64887
--- /dev/null
+++ b/keyboards/ryanbaekr/rb1/keymaps/default/keymap.c
@@ -0,0 +1,22 @@
+/* Copyright 2022 ryanbaekr
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+#include QMK_KEYBOARD_H
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+ [0] = LAYOUT(
+ KC_F6
+ )
+};
diff --git a/keyboards/ryanbaekr/rb1/keymaps/default/readme.md b/keyboards/ryanbaekr/rb1/keymaps/default/readme.md
new file mode 100644
index 0000000000..30225e7aad
--- /dev/null
+++ b/keyboards/ryanbaekr/rb1/keymaps/default/readme.md
@@ -0,0 +1 @@
+# The default keymap for rb1
diff --git a/keyboards/ryanbaekr/rb1/readme.md b/keyboards/ryanbaekr/rb1/readme.md
new file mode 100644
index 0000000000..ce46a83f69
--- /dev/null
+++ b/keyboards/ryanbaekr/rb1/readme.md
@@ -0,0 +1,15 @@
+# rb1
+
+A single key macropad.
+
+* Keyboard Maintainer: [ryanbaekr](https://github.com/ryanbaekr)
+* Hardware Supported: rb1 with SparkFun Qwiic Pro Micro - USB-C
+* Hardware Availability: 2022/08/25
+
+Make example for this keyboard (after setting up your build environment):
+
+ make ryanbaekr/rb1:default
+
+To boot into the bootloader, hold the reset button on the SparkFun Qwiic Pro Micro - USB-C on plug in
+
+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).
diff --git a/keyboards/ryanbaekr/rb1/rules.mk b/keyboards/ryanbaekr/rb1/rules.mk
new file mode 100644
index 0000000000..515ca5621f
--- /dev/null
+++ b/keyboards/ryanbaekr/rb1/rules.mk
@@ -0,0 +1,18 @@
+# MCU name
+MCU = atmega32u4
+
+# Bootloader selection
+BOOTLOADER = caterina
+
+# Build Options
+# change yes to no to disable
+#
+BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
+MOUSEKEY_ENABLE = yes # Mouse keys
+EXTRAKEY_ENABLE = yes # Audio control and System control
+CONSOLE_ENABLE = no # Console for debug
+COMMAND_ENABLE = no # Commands for debug and configuration
+NKRO_ENABLE = no # Enable N-Key Rollover
+BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
+RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
+AUDIO_ENABLE = no # Audio output
diff --git a/keyboards/ryanbaekr/rb69/info.json b/keyboards/ryanbaekr/rb69/info.json
index 805169a526..03b2054712 100644
--- a/keyboards/ryanbaekr/rb69/info.json
+++ b/keyboards/ryanbaekr/rb69/info.json
@@ -1,8 +1,8 @@
{
- "keyboard_name": "rb69",
+ "keyboard_name": "rb69",
"manufacturer": "ryanbaekr",
- "url": "",
- "maintainer": "qmk",
+ "url": "",
+ "maintainer": "ryanbaekr",
"usb": {
"vid": "0x7262",
"pid": "0x0069",
diff --git a/keyboards/ryanbaekr/rb86/info.json b/keyboards/ryanbaekr/rb86/info.json
index 05e3da7686..65806aef95 100644
--- a/keyboards/ryanbaekr/rb86/info.json
+++ b/keyboards/ryanbaekr/rb86/info.json
@@ -1,8 +1,8 @@
{
- "keyboard_name": "rb86",
+ "keyboard_name": "rb86",
"manufacturer": "ryanbaekr",
- "url": "",
- "maintainer": "qmk",
+ "url": "",
+ "maintainer": "ryanbaekr",
"usb": {
"vid": "0x7262",
"pid": "0x0086",