mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-11 06:29:15 +00:00
Puck Refactor, Configurator support and readme cleanup (#4615)
* Puck: layout macro refactor Reformat layout macro to resemble physical keyboard layout. * Puck: Configurator support * Puck: readme cleanup Markdown formatting corrections.
This commit is contained in:
parent
baf69ee89d
commit
f6c0d999b9
3 changed files with 35 additions and 5 deletions
25
keyboards/puck/info.json
Normal file
25
keyboards/puck/info.json
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"keyboard_name": "Puck",
|
||||||
|
"url": "",
|
||||||
|
"maintainer": "john-pettigrew",
|
||||||
|
"width": 3,
|
||||||
|
"height": 4,
|
||||||
|
"layouts": {
|
||||||
|
"LAYOUT": {
|
||||||
|
"layout": [
|
||||||
|
{"label":"SW1", "x":0, "y":0},
|
||||||
|
{"label":"SW2", "x":1, "y":0},
|
||||||
|
{"label":"SW3", "x":2, "y":0},
|
||||||
|
{"label":"SW4", "x":0, "y":1},
|
||||||
|
{"label":"SW5", "x":1, "y":1},
|
||||||
|
{"label":"SW6", "x":2, "y":1},
|
||||||
|
{"label":"SW7", "x":0, "y":2},
|
||||||
|
{"label":"SW8", "x":1, "y":2},
|
||||||
|
{"label":"SW9", "x":2, "y":2},
|
||||||
|
{"label":"SW10", "x":0, "y":3},
|
||||||
|
{"label":"SW11", "x":1, "y":3},
|
||||||
|
{"label":"SW12", "x":2, "y":3}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -4,7 +4,10 @@
|
||||||
#include "quantum.h"
|
#include "quantum.h"
|
||||||
|
|
||||||
#define LAYOUT( \
|
#define LAYOUT( \
|
||||||
K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B \
|
K00, K01, K02, \
|
||||||
|
K03, K04, K05, \
|
||||||
|
K06, K07, K08, \
|
||||||
|
K09, K0A, K0B \
|
||||||
) { \
|
) { \
|
||||||
{ K00, K01, K02 }, \
|
{ K00, K01, K02 }, \
|
||||||
{ K03, K04, K05 }, \
|
{ K03, K04, K05 }, \
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
A 4 x 3 macropad.
|
# Puck
|
||||||
|
|
||||||
Keyboard Maintainer: [john-pettigrew](https://github.com/john-pettigrew)
|
A 4x3 macropad.
|
||||||
Hardware Supported: Puck PCB.
|
|
||||||
Hardware Availability: [OkKeebs.com](https://okkeebs.com/products/puck-pcb)
|
Keyboard Maintainer: [John Pettigrew](https://github.com/john-pettigrew)
|
||||||
|
Hardware Supported: Puck PCB
|
||||||
|
Hardware Availability: [OKKeebs.com](https://okkeebs.com/products/puck-pcb)
|
||||||
|
|
||||||
Make example for this keyboard (after setting up your build environment):
|
Make example for this keyboard (after setting up your build environment):
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue