Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
qmk-bot committed Mar 1, 2025
2 parents 5151abc + 516fa90 commit 2f69eb5
Show file tree
Hide file tree
Showing 4 changed files with 166 additions and 0 deletions.
8 changes: 8 additions & 0 deletions keyboards/era/sirind/chickpad/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Copyright 2024 Hyojin Bak (@eerraa)
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

/* Reset */
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 1000U
120 changes: 120 additions & 0 deletions keyboards/era/sirind/chickpad/keyboard.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
{
"manufacturer": "SIRIND",
"keyboard_name": "ChickPad",
"maintainer": "eerraa",
"bootloader": "rp2040",
"build": {
"debounce_type": "sym_defer_pk"
},
"diode_direction": "COL2ROW",
"features": {
"bootmagic": true,
"extrakey": true,
"mousekey": true,
"nkro": true,
"rgb_matrix": true
},
"matrix_pins": {
"cols": ["GP23", "GP25", "GP3", "GP5", "GP4"],
"rows": ["GP18", "GP24", "GP22"]
},
"processor": "RP2040",
"rgb_matrix": {
"animations": {
"alphas_mods": true,
"band_pinwheel_sat": true,
"band_pinwheel_val": true,
"band_sat": true,
"band_spiral_sat": true,
"band_spiral_val": true,
"band_val": true,
"breathing": true,
"cycle_all": true,
"cycle_left_right": true,
"cycle_out_in": true,
"cycle_out_in_dual": true,
"cycle_pinwheel": true,
"cycle_spiral": true,
"cycle_up_down": true,
"digital_rain": true,
"dual_beacon": true,
"flower_blooming": true,
"gradient_left_right": true,
"gradient_up_down": true,
"hue_breathing": true,
"hue_pendulum": true,
"hue_wave": true,
"jellybean_raindrops": true,
"multisplash": true,
"pixel_flow": true,
"pixel_fractal": true,
"pixel_rain": true,
"rainbow_beacon": true,
"rainbow_moving_chevron": true,
"rainbow_pinwheels": true,
"raindrops": true,
"riverflow": true,
"solid_multisplash": true,
"solid_reactive": true,
"solid_reactive_cross": true,
"solid_reactive_multicross": true,
"solid_reactive_multinexus": true,
"solid_reactive_multiwide": true,
"solid_reactive_nexus": true,
"solid_reactive_simple": true,
"solid_reactive_wide": true,
"solid_splash": true,
"splash": true,
"starlight": true,
"starlight_dual_hue": true,
"starlight_dual_sat": true,
"typing_heatmap": true
},
"driver": "ws2812",
"layout": [
{"matrix": [0, 0], "x": 0, "y": 0, "flags": 4},
{"matrix": [0, 1], "x": 56, "y": 0, "flags": 4},
{"matrix": [0, 2], "x": 112, "y": 0, "flags": 4},
{"matrix": [0, 3], "x": 168, "y": 0, "flags": 4},
{"matrix": [0, 4], "x": 224, "y": 16, "flags": 1},
{"matrix": [1, 3], "x": 168, "y": 32, "flags": 4},
{"matrix": [1, 2], "x": 112, "y": 32, "flags": 4},
{"matrix": [1, 1], "x": 56, "y": 32, "flags": 4},
{"matrix": [1, 0], "x": 0, "y": 32, "flags": 4},
{"matrix": [2, 0], "x": 28, "y": 64, "flags": 1},
{"matrix": [2, 2], "x": 112, "y": 64, "flags": 4},
{"matrix": [2, 3], "x": 168, "y": 64, "flags": 4},
{"matrix": [2, 4], "x": 224, "y": 64, "flags": 4}
],
"sleep": true
},
"url": "",
"usb": {
"device_version": "1.0.0",
"pid": "0x0015",
"vid": "0x4552"
},
"ws2812": {
"driver": "vendor",
"pin": "GP19"
},
"layouts": {
"LAYOUT": {
"layout": [
{"matrix": [0, 0], "x": 0, "y": 0},
{"matrix": [0, 1], "x": 1, "y": 0},
{"matrix": [0, 2], "x": 2, "y": 0},
{"matrix": [0, 3], "x": 3, "y": 0},
{"matrix": [0, 4], "x": 4.25, "y": 0, "w": 1.25, "h": 2},
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.25},
{"matrix": [1, 1], "x": 1.25, "y": 1},
{"matrix": [1, 2], "x": 2.25, "y": 1},
{"matrix": [1, 3], "x": 3.25, "y": 1},
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
{"matrix": [2, 2], "x": 2.25, "y": 2},
{"matrix": [2, 3], "x": 3.25, "y": 2},
{"matrix": [2, 4], "x": 4.25, "y": 2}
]
}
}
}
13 changes: 13 additions & 0 deletions keyboards/era/sirind/chickpad/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// Copyright 2024 QMK (@qmk)
// SPDX-License-Identifier: GPL-2.0-or-later

#include QMK_KEYBOARD_H

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {

[0] = LAYOUT(
KC_1 , KC_2 , KC_3 , KC_4 , KC_ENT ,
KC_LSFT, KC_VOLU, KC_VOLD, KC_UP ,
KC_SPC , KC_LEFT, KC_DOWN, KC_RGHT
)
};
25 changes: 25 additions & 0 deletions keyboards/era/sirind/chickpad/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# ChickPad Unified

![Chickpad](https://i.imgur.com/RAH7dyl.jpeg)

* Keyboard Maintainer: [ERA](https://github.com/eerraa)
* Hardware supported: Chickpad PCB w/ RP2040
* Hardware availability: [Syryan](https://srind.mysoho.com/)

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

make era/sirind/chickpad:default

Flashing example for this keyboard:

make era/sirind/chickpad: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 ESC(0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
* **Physical reset button**: Briefly short the `RESET` and `GND` pads on the SWD header twice, or short the `BOOT` header and plug in keyboard
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available

0 comments on commit 2f69eb5

Please sign in to comment.