aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/togkey/pad/keyboard.json
diff options
context:
space:
mode:
authorJon Henry Fernandez2025-06-28 18:29:57 +0200
committerGitHub2025-06-28 18:29:57 +0200
commit177e461d903e6414e6d7b5b80eb36f48b0d68626 (patch)
tree76231c7dee2de65c2c913646a6d478b345f0f2cb /keyboards/togkey/pad/keyboard.json
parentb42191a2dda9b52470c1fd8cca341fe5f7ca0576 (diff)
[Keyboard] Add togkey pad & pad_plus (#25217)
* Initial Commit for Adding TogKey Pad and TogKey Pad Plus to QMK * Added TogKey Pad default Keymap * Changed Pins for Encoder * added images to read me * Updated Read Me Pictures Links * Applied Suggested Changes and Formatting to keyboard.json * Applied suggested keycodes to keymap.c for togkey pad * Updated Hardware Availability Links in Readme * Set development board instead of seperate bootloader and processor. * Added pad_plus.c for oled. Added config.h for pad_plus. Applied Suggested Changes. * - Moved oled arrays outside of oled_task function. - Removed white spaces from pad_plus keymaps. - Made suggested changes to oled_task function. * Updated with Changes - Updated pad json. Removed extra features, remvoed rgb test from rgb animations. - Updated pad_plus functions - Updated Pad Plus Config file * Readded display defintion. * Corrected OLED resolution definition. * Applied Suggested Changes - Updated Copyright Information - Updated Layout Names - Updated TogKey Pad Layout * Applied Suggested Changes - Removed move layer function. - Repolaced with "TO" keycodes - Updated OLED images * Fixed Layout name in keyboard.json for togkey pad * - Updated Readme for both pad and pad plus. - Updated Oled pictures for pad plus. * - Added bootmagic and extrakey features to togkey pad keyboard.json.
Diffstat (limited to 'keyboards/togkey/pad/keyboard.json')
-rw-r--r--keyboards/togkey/pad/keyboard.json52
1 files changed, 52 insertions, 0 deletions
diff --git a/keyboards/togkey/pad/keyboard.json b/keyboards/togkey/pad/keyboard.json
new file mode 100644
index 0000000000..f93346deb6
--- /dev/null
+++ b/keyboards/togkey/pad/keyboard.json
@@ -0,0 +1,52 @@
+{
+ "manufacturer": "TogKey",
+ "keyboard_name": "Pad",
+ "maintainer": "togkey86",
+ "development_board": "promicro_rp2040",
+ "diode_direction": "COL2ROW",
+ "features": {
+ "bootmagic": true,
+ "extrakey": true,
+ "rgblight": true
+ },
+ "matrix_pins": {
+ "cols": ["GP2", "GP3", "GP4"],
+ "rows": ["GP5", "GP6"]
+ },
+ "rgblight": {
+ "animations": {
+ "alternating": true,
+ "breathing": true,
+ "christmas": true,
+ "knight": true,
+ "rainbow_mood": true,
+ "rainbow_swirl": true,
+ "snake": true,
+ "static_gradient": true,
+ "twinkle": true
+ },
+ "hue_steps": 10,
+ "led_count": 5
+ },
+ "url": "https://togkey.com/products/togkey-pad",
+ "usb": {
+ "device_version": "1.0.0",
+ "pid": "0x8686",
+ "vid": "0xFEED"
+ },
+ "ws2812": {
+ "driver": "vendor",
+ "pin": "GP7"
+ },
+ "layouts": {
+ "LAYOUT": {
+ "layout": [
+ {"matrix": [0, 0], "x": 0.5, "y": 0},
+ {"matrix": [0, 1], "x": 1.5, "y": 0},
+ {"matrix": [1, 0], "x": 0, "y": 1},
+ {"matrix": [1, 1], "x": 1, "y": 1},
+ {"matrix": [1, 2], "x": 2, "y": 1}
+ ]
+ }
+ }
+}