qmk_firmware

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

keyboard.json (1753B)


      1 {
      2     "manufacturer": "keyquest",
      3     "keyboard_name": "Enclave-1",
      4     "maintainer": "keyquesttech",
      5     "usb": {
      6         "vid": "0x1117",
      7         "pid": "0x0E0E",
      8         "device_version": "0.0.1"
      9     },
     10     "ws2812": {
     11         "pin": "B5"
     12     },
     13     "rgblight": {
     14         "hue_steps": 10,
     15         "led_count": 2,
     16         "max_brightness": 200,
     17         "sleep": true,
     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     "build": {
     32         "lto": true
     33     },
     34     "features": {
     35         "bootmagic": true,
     36         "extrakey": true,
     37         "mousekey": true,
     38         "nkro": true,
     39         "rgblight": true
     40     },
     41     "matrix_pins": {
     42         "cols": ["B4", "B7", "C7"],
     43         "rows": ["D6", "B6", "F5"]
     44     },
     45     "diode_direction": "COL2ROW",
     46     "processor": "atmega32u4",
     47     "bootloader": "atmel-dfu",
     48     "layout_aliases": {
     49         "LAYOUT": "LAYOUT_ortho_3x3"
     50     },
     51     "layouts": {
     52         "LAYOUT_ortho_3x3": {
     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 
     58                 {"matrix": [1, 0], "x": 0, "y": 1},
     59                 {"matrix": [1, 1], "x": 1, "y": 1},
     60                 {"matrix": [1, 2], "x": 2, "y": 1},
     61 
     62                 {"matrix": [2, 0], "x": 0, "y": 2},
     63                 {"matrix": [2, 1], "x": 1, "y": 2},
     64                 {"matrix": [2, 2], "x": 2, "y": 2}
     65             ]
     66         }
     67     }
     68 }