Browse Source

[Keyboard] add willoucom/keypad (#21714)

pull/21773/head
Wilfried JEANNIARD 8 months ago
committed by GitHub
parent
commit
17906df945
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 116 additions and 0 deletions
  1. +63
    -0
      keyboards/willoucom/keypad/info.json
  2. +13
    -0
      keyboards/willoucom/keypad/keymaps/default/keymap.json
  3. +19
    -0
      keyboards/willoucom/keypad/keymaps/via/keymap.json
  4. +20
    -0
      keyboards/willoucom/keypad/readme.md
  5. +1
    -0
      keyboards/willoucom/keypad/rules.mk

+ 63
- 0
keyboards/willoucom/keypad/info.json View File

@ -0,0 +1,63 @@
{
"manufacturer": "Willou.com",
"keyboard_name": "keypad",
"maintainer": "willoucom",
"bootloader": "rp2040",
"diode_direction": "COL2ROW",
"features": {
"bootmagic": true,
"command": false,
"console": false,
"extrakey": true,
"mousekey": true,
"nkro": true
},
"matrix_pins": {
"direct": [
["GP0", "GP1", "GP2", "GP3", "GP4", "GP20", "GP5", "GP6", "GP7", "GP8", "GP9", "GP21", "GP10"],
["GP11", "GP12", "GP13", "GP14", "GP22", "GP26", "GP15", "GP16", "GP17", "GP18", "GP19", "GP27", "GP28"]
]
},
"processor": "RP2040",
"tapping": {
"hold_on_other_key_press": true
},
"usb": {
"device_version": "1.0.0",
"force_nkro": true,
"pid": "0x4B50",
"vid": "0x574A"
},
"layouts": {
"LAYOUT": {
"layout": [
{"label": "GRV", "matrix": [0, 0], "x": 0, "y": 0.25},
{"label": "1", "matrix": [0, 1], "x": 1, "y": 0},
{"label": "2", "matrix": [0, 2], "x": 2, "y": 0},
{"label": "3", "matrix": [0, 3], "x": 3, "y": 0},
{"label": "4", "matrix": [0, 4], "x": 4, "y": 0},
{"label": "ESC", "matrix": [0, 5], "x": 6.5, "y": 0},
{"label": "LSFT", "matrix": [0, 6], "x": 0, "y": 1.25},
{"label": "Q", "matrix": [0, 7], "x": 1, "y": 1},
{"label": "W", "matrix": [0, 8], "x": 2, "y": 1},
{"label": "E", "matrix": [0, 9], "x": 3, "y": 1},
{"label": "R", "matrix": [0, 10], "x": 4, "y": 1},
{"label": "LBRC", "matrix": [0, 11], "x": 6.5, "y": 1},
{"label": "LCTL", "matrix": [0, 12], "x": 0, "y": 2.25},
{"label": "A", "matrix": [1, 0], "x": 1, "y": 2},
{"label": "S", "matrix": [1, 1], "x": 2, "y": 2},
{"label": "D", "matrix": [1, 2], "x": 3, "y": 2},
{"label": "F", "matrix": [1, 3], "x": 4, "y": 2},
{"label": "ENT", "matrix": [1, 4], "x": 5.5, "y": 2},
{"label": "G", "matrix": [1, 5], "x": 7.5, "y": 2},
{"label": "SPC", "matrix": [1, 6], "x": 0, "y": 3.25},
{"label": "TAB", "matrix": [1, 7], "x": 1, "y": 3},
{"label": "Z", "matrix": [1, 8], "x": 2, "y": 3},
{"label": "X", "matrix": [1, 9], "x": 3, "y": 3},
{"label": "C", "matrix": [1, 10], "x": 4, "y": 3},
{"label": "RBRC", "matrix": [1, 11], "x": 6.5, "y": 3},
{"label": "M", "matrix": [1, 12], "x": 6.5, "y": 4}
]
}
}
}

+ 13
- 0
keyboards/willoucom/keypad/keymaps/default/keymap.json View File

@ -0,0 +1,13 @@
{
"keyboard": "willoucom/keypad",
"layout": "LAYOUT",
"layers": [
[
"KC_GRV", "KC_1", "KC_2", "KC_3", "KC_4", "KC_ESC",
"KC_LSFT", "KC_Q", "KC_W", "KC_E", "KC_R", "KC_LBRC",
"KC_LCTL", "KC_A", "KC_S", "KC_D", "KC_F", "KC_ENT", "KC_G",
"KC_SPC", "KC_TAB", "KC_Z", "KC_X", "KC_C", "KC_RBRC",
"KC_M"
]
]
}

+ 19
- 0
keyboards/willoucom/keypad/keymaps/via/keymap.json View File

@ -0,0 +1,19 @@
{
"keyboard": "willoucom/keypad",
"config": {
"features": {
"via": true
}
},
"keymap": "via",
"layout": "LAYOUT",
"layers": [
[
"KC_GRV", "KC_1", "KC_2", "KC_3", "KC_4", "KC_ESC",
"KC_LSFT", "KC_Q", "KC_W", "KC_E", "KC_R", "KC_LBRC",
"KC_LCTL", "KC_A", "KC_S", "KC_D", "KC_F", "KC_ENT", "KC_G",
"KC_SPC", "KC_TAB", "KC_Z", "KC_X", "KC_C", "KC_RBRC",
"KC_M"
]
]
}

+ 20
- 0
keyboards/willoucom/keypad/readme.md View File

@ -0,0 +1,20 @@
# willoucom/keypad
A programmable keypad for Productivity and Gaming.
* Keyboard Maintainer: [Wilfried JEANNIARD](https://github.com/willoucom)
* Product Page : [The Keypad](https://www.willou.com/keypad/)
Make example for this keyboard (after setting up your build environment):
qmk compile -kb willoucom/keypad -km default
Flashing example for this keyboard:
qmk flash -kb willoucom/keypad -km default
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
Push the reset button twice. Then drop the u2f file in the usb drive.

+ 1
- 0
keyboards/willoucom/keypad/rules.mk View File

@ -0,0 +1 @@
# This file intentionally left blank

Loading…
Cancel
Save