qmk_firmware

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

keyboard.json (2104B)


      1 {
      2     "keyboard_name": "Yampad",
      3     "manufacturer": "Mattia Dal Ben",
      4     "maintainer": "mattdibi",
      5     "usb": {
      6         "vid": "0x5950",
      7         "pid": "0x8369",
      8         "device_version": "0.0.1"
      9     },
     10     "features": {
     11         "bootmagic": true,
     12         "nkro": true,
     13         "oled": true,
     14         "rgblight": true
     15     },
     16     "rgblight": {
     17         "led_count": 9,
     18         "animations": {
     19             "breathing": true,
     20             "rainbow_mood": true,
     21             "rainbow_swirl": true,
     22             "snake": true,
     23             "knight": true,
     24             "christmas": true,
     25             "static_gradient": true,
     26             "rgb_test": true,
     27             "alternating": true,
     28             "twinkle": true
     29         }
     30     },
     31     "ws2812": {
     32         "pin": "F4"
     33     },
     34     "build": {
     35         "lto": true,
     36         "debounce_type": "sym_eager_pk"
     37     },
     38     "matrix_pins": {
     39         "cols": ["B1", "B3", "B2", "B6"],
     40         "rows": ["C6", "D7", "E6", "B4", "B5"]
     41     },
     42     "diode_direction": "COL2ROW",
     43     "development_board": "promicro",
     44     "debounce": 2,
     45     "layouts": {
     46         "LAYOUT": {
     47             "layout": [
     48                 {"matrix": [0, 0], "x": 0, "y": 0},
     49                 {"matrix": [0, 1], "x": 1, "y": 0},
     50                 {"matrix": [0, 2], "x": 2, "y": 0},
     51                 {"matrix": [0, 3], "x": 3, "y": 0},
     52 
     53                 {"matrix": [1, 0], "x": 0, "y": 1},
     54                 {"matrix": [1, 1], "x": 1, "y": 1},
     55                 {"matrix": [1, 2], "x": 2, "y": 1},
     56 
     57                 {"matrix": [2, 0], "x": 0, "y": 2},
     58                 {"matrix": [2, 1], "x": 1, "y": 2},
     59                 {"matrix": [2, 2], "x": 2, "y": 2},
     60                 {"matrix": [1, 3], "x": 3, "y": 1, "h": 2},
     61 
     62                 {"matrix": [3, 0], "x": 0, "y": 3},
     63                 {"matrix": [3, 1], "x": 1, "y": 3},
     64                 {"matrix": [3, 2], "x": 2, "y": 3},
     65 
     66                 {"matrix": [4, 0], "x": 0, "y": 4},
     67                 {"matrix": [4, 1], "x": 1, "y": 4},
     68                 {"matrix": [4, 2], "x": 2, "y": 4},
     69                 {"matrix": [4, 3], "x": 3, "y": 3, "h": 2}
     70             ]
     71         }
     72     }
     73 }