qmk_firmware

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

keyboard.json (4331B)


      1 {
      2     "keyboard_name": "Macropad RP2040",
      3     "manufacturer": "Adafruit",
      4     "url": "https://learn.adafruit.com/adafruit-macropad-rp2040",
      5     "maintainer": "Jpe230",
      6     "usb": {
      7         "vid": "0x239A",
      8         "pid": "0x0108",
      9         "device_version": "0.0.1"
     10     },
     11     "features": {
     12         "bootmagic": true,
     13         "mousekey": false,
     14         "extrakey": true,
     15         "nkro": true,
     16         "audio": true,
     17         "encoder": true,
     18         "rgb_matrix": true,
     19         "oled": true
     20     },
     21     "audio": {
     22         "driver": "pwm_hardware",
     23         "power_control": {
     24             "pin": "GP14"
     25         }
     26     },
     27     "encoder": {
     28         "rotary": [
     29             {"pin_a": "GP18", "pin_b": "GP17"}
     30         ]
     31     },
     32     "rgb_matrix": {
     33         "animations": {
     34             "alphas_mods": true,
     35             "gradient_up_down": true,
     36             "gradient_left_right": true,
     37             "breathing": true,
     38             "band_sat": true,
     39             "band_val": true,
     40             "band_pinwheel_sat": true,
     41             "band_pinwheel_val": true,
     42             "band_spiral_sat": true,
     43             "band_spiral_val": true,
     44             "cycle_all": true,
     45             "cycle_left_right": true,
     46             "cycle_up_down": true,
     47             "rainbow_moving_chevron": true,
     48             "cycle_out_in": true,
     49             "cycle_out_in_dual": true,
     50             "cycle_pinwheel": true,
     51             "cycle_spiral": true,
     52             "dual_beacon": true,
     53             "rainbow_beacon": true,
     54             "rainbow_pinwheels": true,
     55             "raindrops": true,
     56             "jellybean_raindrops": true,
     57             "hue_breathing": true,
     58             "hue_pendulum": true,
     59             "hue_wave": true,
     60             "pixel_rain": true,
     61             "pixel_flow": true,
     62             "pixel_fractal": true,
     63             "typing_heatmap": true,
     64             "digital_rain": true,
     65             "solid_reactive_simple": true,
     66             "solid_reactive": true,
     67             "solid_reactive_wide": true,
     68             "solid_reactive_multiwide": true,
     69             "solid_reactive_cross": true,
     70             "solid_reactive_multicross": true,
     71             "solid_reactive_nexus": true,
     72             "solid_reactive_multinexus": true,
     73             "splash": true,
     74             "multisplash": true,
     75             "solid_splash": true,
     76             "solid_multisplash": true
     77         },
     78         "driver": "ws2812",
     79         "layout": [
     80             {"matrix": [1, 0], "x": 0, "y": 0, "flags": 4},
     81             {"matrix": [1, 1], "x": 112, "y": 0, "flags": 4},
     82             {"matrix": [1, 2], "x": 224, "y": 0, "flags": 4},
     83             {"matrix": [2, 0], "x": 0, "y": 21, "flags": 4},
     84             {"matrix": [2, 1], "x": 112, "y": 21, "flags": 4},
     85             {"matrix": [2, 2], "x": 224, "y": 21, "flags": 4},
     86             {"matrix": [3, 0], "x": 0, "y": 42, "flags": 4},
     87             {"matrix": [3, 1], "x": 112, "y": 42, "flags": 4},
     88             {"matrix": [3, 2], "x": 224, "y": 42, "flags": 4},
     89             {"matrix": [4, 0], "x": 0, "y": 64, "flags": 4},
     90             {"matrix": [4, 1], "x": 112, "y": 64, "flags": 4},
     91             {"matrix": [4, 2], "x": 224, "y": 64, "flags": 4}
     92         ]
     93     },
     94     "bootmagic": {
     95         "matrix": [1, 2]
     96     },
     97     "ws2812": {
     98         "pin": "GP19",
     99         "driver": "vendor"
    100     },
    101     "processor": "RP2040",
    102     "bootloader": "rp2040",
    103     "matrix_pins": {
    104         "direct": [
    105             [null, null, "GP0"],
    106             ["GP1", "GP2", "GP3"],
    107             ["GP4", "GP5", "GP6"],
    108             ["GP7", "GP8", "GP9"],
    109             ["GP10", "GP11", "GP12"]
    110         ]
    111     },
    112     "layouts": {
    113         "LAYOUT": {
    114             "layout": [
    115                 {"x": 2, "y": 0, "matrix": [0, 2]},
    116                 {"x": 0, "y": 1, "matrix": [1, 0]},
    117                 {"x": 1, "y": 1, "matrix": [1, 1]},
    118                 {"x": 2, "y": 1, "matrix": [1, 2]},
    119                 {"x": 0, "y": 2, "matrix": [2, 0]},
    120                 {"x": 1, "y": 2, "matrix": [2, 1]},
    121                 {"x": 2, "y": 2, "matrix": [2, 2]},
    122                 {"x": 0, "y": 3, "matrix": [3, 0]},
    123                 {"x": 1, "y": 3, "matrix": [3, 1]},
    124                 {"x": 2, "y": 3, "matrix": [3, 2]},
    125                 {"x": 0, "y": 4, "matrix": [4, 0]},
    126                 {"x": 1, "y": 4, "matrix": [4, 1]},
    127                 {"x": 2, "y": 4, "matrix": [4, 2]}
    128             ]
    129         }
    130     }
    131 }