qmk_firmware

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

keyboard.json (1536B)


      1 {
      2     "usb": {
      3         "device_version": "0.0.6"
      4     },
      5     "matrix_pins": {
      6         "cols": ["D7", "E6", "B4", "B5"],
      7         "rows": ["F4", "F5", "F6", "F7"]
      8     },
      9     "diode_direction": "COL2ROW",
     10     "encoder": {
     11         "rotary": [
     12             {"pin_a": "C6", "pin_b": "D4"},
     13             {"pin_a": "D0", "pin_b": "D1"}
     14         ]
     15     },
     16     "bootmagic": {
     17         "matrix": [3, 0]
     18     },
     19     "development_board": "promicro",
     20     "features": {
     21         "bootmagic": true,
     22         "mousekey": true,
     23         "extrakey": true,
     24         "console": true,
     25         "encoder": true,
     26         "key_lock": true
     27     },
     28     "layouts": {
     29         "LAYOUT": {
     30             "layout": [
     31                 {"matrix": [0, 0], "x": 0, "y": 0},
     32                 {"matrix": [0, 1], "x": 1, "y": 0},
     33                 {"matrix": [0, 2], "x": 2, "y": 0},
     34                 {"matrix": [0, 3], "x": 3, "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                 {"matrix": [1, 3], "x": 3, "y": 1},
     40 
     41                 {"matrix": [2, 0], "x": 0, "y": 2},
     42                 {"matrix": [2, 1], "x": 1, "y": 2},
     43                 {"matrix": [2, 2], "x": 2, "y": 2},
     44                 {"matrix": [2, 3], "x": 3, "y": 2},
     45 
     46                 {"matrix": [3, 0], "x": 0, "y": 3},
     47                 {"matrix": [3, 1], "x": 1, "y": 3},
     48                 {"matrix": [3, 2], "x": 2, "y": 3},
     49                 {"matrix": [3, 3], "x": 3, "y": 3}
     50             ]
     51         }
     52     }
     53 }