qmk_firmware

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

keyboard.json (997B)


      1 {
      2     "usb": {
      3         "pid": "0x0040",
      4         "device_version": "0.0.2"
      5     },
      6     "features": {
      7         "bootmagic": false,
      8         "encoder": true,
      9         "extrakey": true,
     10         "mousekey": true,
     11         "nkro": true,
     12         "oled": true,
     13         "unicode": true
     14     },
     15     "matrix_pins": {
     16         "cols": ["C6", "D7", "E6"],
     17         "rows": ["B4", "B5"]
     18     },
     19     "diode_direction": "COL2ROW",
     20     "encoder": {
     21         "rotary": [
     22             {"pin_a": "F5", "pin_b": "F4"}
     23         ]
     24     },
     25     "qmk": {
     26         "tap_keycode_delay": 50
     27     },
     28     "development_board": "promicro",
     29     "layouts": {
     30         "LAYOUT": {
     31             "layout": [
     32                 {"matrix": [0, 0], "x": 0, "y": 0},
     33                 {"matrix": [0, 1], "x": 1, "y": 0},
     34                 {"matrix": [0, 2], "x": 2, "y": 0},
     35 
     36                 {"matrix": [1, 0], "x": 0, "y": 1},
     37                 {"matrix": [1, 1], "x": 1, "y": 1},
     38                 {"matrix": [1, 2], "x": 2, "y": 1}
     39             ]
     40         }
     41     }
     42 }