qmk_firmware

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

keyboard.json (2109B)


      1 {
      2     "keyboard_name": "GKB-M16",
      3     "manufacturer": "gkeyboard",
      4     "maintainer": "gkeyboard",
      5     "usb": {
      6         "vid": "0x474B",
      7         "pid": "0x4201",
      8         "device_version": "0.0.1"
      9     },
     10     "rgblight": {
     11         "saturation_steps": 8,
     12         "brightness_steps": 8,
     13         "led_count": 4,
     14         "sleep": true,
     15         "animations": {
     16             "breathing": true,
     17             "rainbow_mood": true,
     18             "rainbow_swirl": true,
     19             "snake": true,
     20             "knight": true,
     21             "christmas": true,
     22             "static_gradient": true,
     23             "rgb_test": true,
     24             "alternating": true,
     25             "twinkle": true
     26         }
     27     },
     28     "ws2812": {
     29         "pin": "F1"
     30     },
     31     "features": {
     32         "bootmagic": true,
     33         "extrakey": true,
     34         "mousekey": true,
     35         "nkro": true,
     36         "rgblight": true
     37     },
     38     "qmk": {
     39         "locking": {
     40             "enabled": true,
     41             "resync": true
     42         }
     43     },
     44     "matrix_pins": {
     45         "cols": ["F4", "F5", "F6", "F7"],
     46         "rows": ["D4", "D5", "D6", "D7"]
     47     },
     48     "diode_direction": "COL2ROW",
     49     "processor": "atmega32u4",
     50     "bootloader": "atmel-dfu",
     51     "layouts": {
     52         "LAYOUT_ortho_4x4": {
     53             "layout": [
     54               {"matrix": [0, 0], "x": 0, "y": 0},
     55               {"matrix": [0, 1], "x": 1, "y": 0},
     56               {"matrix": [0, 2], "x": 2, "y": 0},
     57               {"matrix": [0, 3], "x": 3, "y": 0},
     58 
     59               {"matrix": [1, 0], "x": 0, "y": 1},
     60               {"matrix": [1, 1], "x": 1, "y": 1},
     61               {"matrix": [1, 2], "x": 2, "y": 1},
     62               {"matrix": [1, 3], "x": 3, "y": 1},
     63 
     64               {"matrix": [2, 0], "x": 0, "y": 2},
     65               {"matrix": [2, 1], "x": 1, "y": 2},
     66               {"matrix": [2, 2], "x": 2, "y": 2},
     67               {"matrix": [2, 3], "x": 3, "y": 2},
     68 
     69               {"matrix": [3, 0], "x": 0, "y": 3},
     70               {"matrix": [3, 1], "x": 1, "y": 3},
     71               {"matrix": [3, 2], "x": 2, "y": 3},
     72               {"matrix": [3, 3], "x": 3, "y": 3}
     73             ]
     74           }
     75         }
     76       }