qmk_firmware

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

keyboard.json (2556B)


      1 {
      2     "keyboard_name": "PuckBuddy",
      3     "manufacturer": "MechWild",
      4     "url": "mechwild.com",
      5     "maintainer": "kylemccreery",
      6     "usb": {
      7         "vid": "0x6D77",
      8         "pid": "0x170F",
      9         "device_version": "1.0.0"
     10     },
     11     "features": {
     12         "bootmagic": true,
     13         "mousekey": true,
     14         "extrakey": true,
     15         "rgblight": true,
     16         "encoder": true,
     17         "oled": true,
     18         "dip_switch": true,
     19         "pointing_device": true,
     20         "dynamic_tapping_term": true
     21     },
     22     "matrix_pins": {
     23         "cols": ["B10", "A8", "B4", "B5"],
     24         "rows": ["B12", "B13", "B14", "B15"]
     25     },
     26     "diode_direction": "COL2ROW",
     27     "dip_switch": {
     28         "pins": ["A0"]
     29     },
     30     "encoder": {
     31         "rotary": [
     32             {"pin_a": "B1", "pin_b": "B0"},
     33             {"pin_a": "B3", "pin_b": "A15"}
     34         ]
     35     },
     36     "qmk": {
     37         "tap_keycode_delay": 10,
     38         "locking": {
     39             "enabled": true,
     40             "resync": true
     41         }
     42     },
     43     "indicators": {
     44         "caps_lock": "C13",
     45         "on_state": 0
     46     },
     47     "rgblight": {
     48         "saturation_steps": 8,
     49         "brightness_steps": 8,
     50         "led_count": 3,
     51         "sleep": true,
     52         "animations": {
     53             "breathing": true,
     54             "rainbow_mood": true,
     55             "rainbow_swirl": true,
     56             "snake": true,
     57             "knight": true,
     58             "christmas": true,
     59             "static_gradient": true,
     60             "rgb_test": true,
     61             "alternating": true
     62         }
     63     },
     64     "tapping": {
     65         "term": 0
     66     },
     67     "ws2812": {
     68         "pin": "A3"
     69     },
     70     "development_board": "blackpill_f401",
     71     "layouts": {
     72         "LAYOUT": {
     73             "layout": [
     74                 {"matrix": [0, 0], "x": 0, "y": 0},
     75                 {"matrix": [0, 1], "x": 1.5, "y": 0},
     76                 {"matrix": [1, 1], "x": 2.5, "y": 0},
     77                 {"matrix": [2, 1], "x": 3.5, "y": 0},
     78                 {"matrix": [0, 2], "x": 5, "y": 0},
     79 
     80                 {"matrix": [1, 0], "x": 0, "y": 1.25},
     81                 {"matrix": [1, 2], "x": 5, "y": 1.25},
     82 
     83                 {"matrix": [2, 0], "x": 0, "y": 2.25},
     84                 {"matrix": [2, 2], "x": 5, "y": 2.25},
     85 
     86                 {"matrix": [3, 0], "x": 0, "y": 3.25},
     87                 {"matrix": [3, 2], "x": 5, "y": 3.25},
     88 
     89                 {"matrix": [0, 3], "x": 1, "y": 4.5},
     90                 {"matrix": [1, 3], "x": 2, "y": 4.5},
     91                 {"matrix": [2, 3], "x": 3, "y": 4.5},
     92                 {"matrix": [3, 3], "x": 4, "y": 4.5}
     93             ]
     94         }
     95     }
     96 }