qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

keyboard.json (1323B)


      1 {
      2     "keyboard_name": "snatchpad",
      3     "manufacturer": "xia0",
      4     "maintainer": "xia0",
      5     "usb": {
      6         "vid": "0x6662",
      7         "pid": "0x7370",
      8         "device_version": "0.0.1"
      9     },
     10     "features": {
     11         "bootmagic": true,
     12         "encoder": true,
     13         "extrakey": true,
     14         "key_lock": true,
     15         "mousekey": true,
     16         "nkro": true
     17     },
     18     "qmk": {
     19         "locking": {
     20             "enabled": true,
     21             "resync": true
     22         }
     23     },
     24     "matrix_pins": {
     25         "cols": ["B1", "B3", "B2"],
     26         "rows": ["F4", "F5", "F6"]
     27     },
     28     "diode_direction": "COL2ROW",
     29     "encoder": {
     30         "rotary": [
     31             {"pin_a": "D3", "pin_b": "D2"},
     32             {"pin_a": "D0", "pin_b": "D1"}
     33         ]
     34     },
     35     "processor": "atmega32u4",
     36     "bootloader": "atmel-dfu",
     37     "layouts": {
     38         "LAYOUT": {
     39             "layout": [
     40                 {"matrix": [0, 0], "x": 1, "y": 0},
     41                 {"matrix": [0, 1], "x": 2, "y": 0},
     42                 {"matrix": [0, 2], "x": 3, "y": 0},
     43 
     44                 {"matrix": [1, 0], "x": 1, "y": 1},
     45                 {"matrix": [1, 1], "x": 2, "y": 1},
     46                 {"matrix": [1, 2], "x": 3, "y": 1},
     47 
     48                 {"matrix": [2, 0], "x": 0, "y": 2},
     49                 {"matrix": [2, 2], "x": 4, "y": 2}
     50             ]
     51         }
     52     }
     53 }