qmk_firmware

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

keyboard.json (4006B)


      1 {
      2     "keyboard_name": "Lunakey Pico",
      3     "manufacturer": "yoichiro",
      4     "maintainer": "Yoichiro Tanaka",
      5     "bootloader": "rp2040",
      6     "diode_direction": "COL2ROW",
      7     "features": {
      8         "bootmagic": false,
      9         "mousekey": true,
     10         "extrakey": true,
     11         "nkro": false,
     12         "rgblight": true
     13     },
     14     "matrix_pins": {
     15         "cols": ["GP21", "GP20", "GP19", "GP18", "GP17", "GP16"],
     16         "rows": ["GP12", "GP13", "GP14", "GP15"]
     17     },
     18     "processor": "RP2040",
     19     "usb": {
     20         "device_version": "3.0.0",
     21         "pid": "0x0003",
     22         "vid": "0x5954"
     23     },
     24     "rgblight": {
     25         "led_count": 12,
     26         "led_map": [0, 1, 2, 3, 4, 5, 11, 10, 9, 8, 7, 6],
     27         "sleep": true,
     28         "split": true,
     29         "split_count": [6, 6],
     30         "animations": {
     31             "alternating": true,
     32             "breathing": true,
     33             "christmas": true,
     34             "knight": true,
     35             "rainbow_mood": true,
     36             "rainbow_swirl": true,
     37             "rgb_test": false,
     38             "snake": true,
     39             "static_gradient": true,
     40             "twinkle": true
     41         },
     42         "saturation_steps": 8,
     43         "brightness_steps": 8
     44     },
     45     "split": {
     46         "enabled": true,
     47         "serial": {
     48             "driver": "vendor"
     49         }
     50     },
     51     "ws2812": {
     52         "pin": "GP6",
     53         "driver": "vendor"
     54     },
     55     "layout_aliases": {
     56         "LAYOUT": "LAYOUT_split_3x6_4"
     57     },
     58     "layouts": {
     59         "LAYOUT_split_3x6_4": {
     60             "layout": [
     61                 {"matrix": [0, 0], "x": 0, "y": 1.5},
     62                 {"matrix": [0, 1], "x": 1, "y": 1.25},
     63                 {"matrix": [0, 2], "x": 2, "y": 0.5},
     64                 {"matrix": [0, 3], "x": 3, "y": 0},
     65                 {"matrix": [0, 4], "x": 4, "y": 0.25},
     66                 {"matrix": [0, 5], "x": 5, "y": 0.5},
     67 
     68                 {"matrix": [4, 5], "x": 8.75, "y": 0.5},
     69                 {"matrix": [4, 4], "x": 9.75, "y": 0.25},
     70                 {"matrix": [4, 3], "x": 10.75, "y": 0},
     71                 {"matrix": [4, 2], "x": 11.75, "y": 0.5},
     72                 {"matrix": [4, 1], "x": 12.75, "y": 1.25},
     73                 {"matrix": [4, 0], "x": 13.75, "y": 1.5},
     74 
     75                 {"matrix": [1, 0], "x": 0, "y": 2.5},
     76                 {"matrix": [1, 1], "x": 1, "y": 2.25},
     77                 {"matrix": [1, 2], "x": 2, "y": 1.5},
     78                 {"matrix": [1, 3], "x": 3, "y": 1},
     79                 {"matrix": [1, 4], "x": 4, "y": 1.25},
     80                 {"matrix": [1, 5], "x": 5, "y": 1.5},
     81 
     82                 {"matrix": [5, 5], "x": 8.75, "y": 1.5},
     83                 {"matrix": [5, 4], "x": 9.75, "y": 1.25},
     84                 {"matrix": [5, 3], "x": 10.75, "y": 1},
     85                 {"matrix": [5, 2], "x": 11.75, "y": 1.5},
     86                 {"matrix": [5, 1], "x": 12.75, "y": 2.25},
     87                 {"matrix": [5, 0], "x": 13.75, "y": 2.5},
     88 
     89                 {"matrix": [2, 0], "x": 0, "y": 3.5},
     90                 {"matrix": [2, 1], "x": 1, "y": 3.25},
     91                 {"matrix": [2, 2], "x": 2, "y": 2.5},
     92                 {"matrix": [2, 3], "x": 3, "y": 2},
     93                 {"matrix": [2, 4], "x": 4, "y": 2.25},
     94                 {"matrix": [2, 5], "x": 5, "y": 2.5},
     95 
     96                 {"matrix": [6, 5], "x": 8.75, "y": 2.5},
     97                 {"matrix": [6, 4], "x": 9.75, "y": 2.25},
     98                 {"matrix": [6, 3], "x": 10.75, "y": 2},
     99                 {"matrix": [6, 2], "x": 11.75, "y": 2.5},
    100                 {"matrix": [6, 1], "x": 12.75, "y": 3.25},
    101                 {"matrix": [6, 0], "x": 13.75, "y": 3.5},
    102 
    103                 {"matrix": [3, 2], "x": 3, "y": 4},
    104                 {"matrix": [3, 3], "x": 4, "y": 3.75},
    105                 {"matrix": [3, 4], "x": 5, "y": 3.75},
    106                 {"matrix": [3, 5], "x": 6, "y": 4},
    107 
    108                 {"matrix": [7, 5], "x": 7.75, "y": 4},
    109                 {"matrix": [7, 4], "x": 8.75, "y": 3.75},
    110                 {"matrix": [7, 3], "x": 9.75, "y": 3.75},
    111                 {"matrix": [7, 2], "x": 10.75, "y": 4}
    112             ]
    113         }
    114     }
    115 }