qmk_firmware

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

keyboard.json (1702B)


      1 {
      2     "keyboard_name": "Mini Winni",
      3     "manufacturer": "WinKeys",
      4     "maintainer": "matthewdias",
      5     "usb": {
      6         "vid": "0x574B",
      7         "pid": "0x7770",
      8         "device_version": "0.0.1"
      9     },
     10     "processor": "atmega32u4",
     11     "bootloader": "atmel-dfu",
     12     "features": {
     13         "bootmagic": true,
     14         "extrakey": true,
     15         "mousekey": true,
     16         "nkro": true,
     17         "rgblight": true
     18     },
     19     "matrix_pins": {
     20         "direct": [
     21             ["F4", "F5", "B4", "D7"],
     22             ["F6", "F7", "B6", "B5"]
     23         ]
     24     },
     25     "rgblight": {
     26         "led_count": 4,
     27         "animations": {
     28             "breathing": true,
     29             "rainbow_mood": true,
     30             "rainbow_swirl": true,
     31             "snake": true,
     32             "knight": true,
     33             "christmas": true,
     34             "static_gradient": true,
     35             "rgb_test": true,
     36             "alternating": true,
     37             "twinkle": true
     38         }
     39     },
     40     "ws2812": {
     41         "pin": "E6"
     42     },
     43     "layout_aliases": {
     44         "LAYOUT_all": "LAYOUT_ortho_2x4"
     45     },
     46     "layouts": {
     47         "LAYOUT_ortho_2x4": {
     48             "layout": [
     49                 {"label": "F1", "x": 0, "y": 0, "matrix": [0, 0]},
     50                 {"label": "F2", "x": 1, "y": 0, "matrix": [0, 1]},
     51                 {"label": "F3", "x": 2, "y": 0, "matrix": [0, 2]},
     52                 {"label": "F4", "x": 3, "y": 0, "matrix": [0, 3]},
     53 
     54                 {"label": "F5", "x": 0, "y": 1, "matrix": [1, 0]},
     55                 {"label": "F6", "x": 1, "y": 1, "matrix": [1, 1]},
     56                 {"label": "F7", "x": 2, "y": 1, "matrix": [1, 2]},
     57                 {"label": "F8", "x": 3, "y": 1, "matrix": [1, 3]}
     58             ]
     59         }
     60     }
     61 }