qmk_firmware

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

keyboard.json (2409B)


      1 {
      2     "keyboard_name": "TIDBIT",
      3     "manufacturer": "nullbits",
      4     "url": "https://nullbits.co/tidbit/",
      5     "usb": {
      6         "vid": "0x6E61",
      7         "pid": "0x6064",
      8         "device_version": "0.0.1"
      9     },
     10     "build": {
     11         "lto": true
     12     },
     13     "features": {
     14         "bootmagic": false,
     15         "encoder": true,
     16         "extrakey": true,
     17         "mousekey": true,
     18         "nkro": false,
     19         "rgblight": true
     20     },
     21     "rgblight": {
     22         "led_count": 8,
     23         "animations": {
     24             "breathing": true,
     25             "rainbow_mood": true,
     26             "rainbow_swirl": true,
     27             "snake": true,
     28             "knight": true,
     29             "christmas": true,
     30             "static_gradient": true,
     31             "rgb_test": true,
     32             "alternating": true,
     33             "twinkle": true
     34         }
     35     },
     36     "ws2812": {
     37         "pin": "B6"
     38     },
     39     "matrix_pins": {
     40         "cols": [null, null, "F4", "F5", "F6", "F7"],
     41         "rows": ["B1", "E6", "D7", "C6", "D4"]
     42     },
     43     "diode_direction": "ROW2COL",
     44     "encoder": {
     45         "rotary": [
     46             {"pin_a": "B2", "pin_b": "B3"},
     47             {"pin_a": "B4", "pin_b": "B5"},
     48             {"pin_a": "D0", "pin_b": "D1"},
     49             {"pin_a": "D3", "pin_b": "D2"}
     50         ]
     51     },
     52     "processor": "atmega32u4",
     53     "bootloader": "atmel-dfu",
     54     "layouts": {
     55         "LAYOUT": {
     56             "layout": [
     57                 {"matrix": [0, 3], "x": 1, "y": 0},
     58                 {"matrix": [0, 4], "x": 2, "y": 0},
     59                 {"matrix": [0, 5], "x": 3, "y": 0},
     60 
     61                 {"matrix": [1, 2], "x": 0, "y": 1},
     62                 {"matrix": [1, 3], "x": 1, "y": 1},
     63                 {"matrix": [1, 4], "x": 2, "y": 1},
     64                 {"matrix": [1, 5], "x": 3, "y": 1},
     65 
     66                 {"matrix": [2, 2], "x": 0, "y": 2},
     67                 {"matrix": [2, 3], "x": 1, "y": 2},
     68                 {"matrix": [2, 4], "x": 2, "y": 2},
     69                 {"matrix": [2, 5], "x": 3, "y": 2},
     70 
     71                 {"matrix": [3, 2], "x": 0, "y": 3},
     72                 {"matrix": [3, 3], "x": 1, "y": 3},
     73                 {"matrix": [3, 4], "x": 2, "y": 3},
     74                 {"matrix": [3, 5], "x": 3, "y": 3},
     75 
     76                 {"matrix": [4, 2], "x": 0, "y": 4},
     77                 {"matrix": [4, 3], "x": 1, "y": 4},
     78                 {"matrix": [4, 4], "x": 2, "y": 4},
     79                 {"matrix": [4, 5], "x": 3, "y": 4}
     80             ]
     81         }
     82     }
     83 }