Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Addition of Hotdog Pad #24650

Merged
merged 11 commits into from
Dec 2, 2024
12 changes: 12 additions & 0 deletions keyboards/onnenon/hotdog_pad/hotdog_pad.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Copyright 2024 Stephen Onnen (@onnenon)
// SPDX-License-Identifier: GPL-2.0-or-later

#include "quantum.h"

void keyboard_pre_init_kb(void) {
// Enable the power pin for the Xiao Seeed rp2040 onboard NeoPixel
gpio_set_pin_output(GP11);
gpio_write_pin_high(GP11);

keyboard_pre_init_user();
}
53 changes: 53 additions & 0 deletions keyboards/onnenon/hotdog_pad/keyboard.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"manufacturer": "onnenon",
"keyboard_name": "Hotdog Pad",
"maintainer": "onnenon",
"processor": "RP2040",
"bootloader": "rp2040",
"matrix_pins": {
"direct": [["GP1", "GP2", "GP4", "GP6", "GP0"]]
},
"usb": {
"device_version": "1.0.0",
"pid": "0x0001",
"vid": "0x4F4E"
},
"features": {
"encoder": true,
"rgblight": true,
"extrakey": true,
"mousekey": true
},
"encoder": {
"rotary": [{ "pin_a": "GP29", "pin_b": "GP28" }]
},
"layouts": {
"LAYOUT": {
"layout": [
{ "x": 0, "y": 0, "matrix": [0, 0] },
{ "x": 1, "y": 0, "matrix": [0, 1] },
{ "x": 2, "y": 0, "matrix": [0, 2] },
{ "x": 3, "y": 0, "matrix": [0, 3] },
{ "x": 4, "y": 0, "matrix": [0, 4] }
]
}
},
"ws2812": {
"pin": "GP12",
"driver": "vendor"
},
"rgblight": {
"led_count": 1,
"max_brightness": 185,
"animations": {
"breathing": true,
"rainbow_mood": true,
"knight": true,
"christmas": true,
"static_gradient": true,
"rgb_test": true,
"alternating": true,
"twinkle": true
}
}
}
14 changes: 14 additions & 0 deletions keyboards/onnenon/hotdog_pad/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// Copyright 2024 Stephen Onnen (@onnenon)
// SPDX-License-Identifier: GPL-2.0-or-later

#include QMK_KEYBOARD_H

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT(KC_A, KC_B, KC_C, KC_D, KC_MUTE)
};

#if defined(ENCODER_MAP_ENABLE)
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
[0] = {ENCODER_CCW_CW(KC_VOLD, KC_VOLU)},
};
#endif
1 change: 1 addition & 0 deletions keyboards/onnenon/hotdog_pad/keymaps/default/rules.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ENCODER_MAP_ENABLE = yes
24 changes: 24 additions & 0 deletions keyboards/onnenon/hotdog_pad/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Hotdog Pad

* Keyboard Maintainer: [Stephen Onnen](https://github.com/onnenon)
* Hardware Supported: Seeed Studio XIAO RP2040
* Hardware Availability: https://github.com/onnenon/hotdog_pad

Make example for this keyboard (after setting up your build environment):

make onnenon/hotdog_pad:default

Flashing example for this keyboard:

make onnenon/hotdog_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 (usually the top left key or Escape) and plug in the keyboard
* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available