- PCB x1
- トッププレート x1
- ボトムプレート x1
- OLED カバープレート x1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Lele 60", | |
"vendorId": "0xCA21", | |
"productId": "0x003C", | |
"lighting": "wt_rgb_backlight", | |
"matrix": { | |
"rows": 5, | |
"cols": 14 | |
}, | |
"layouts": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "BrownSugar Macro", | |
"vendorId": "0x1716", | |
"productId": "0x5963", | |
"lighting": "qmk_rgblight", | |
"matrix": { "rows": 3, "cols": 3 }, | |
"layouts": { | |
"labels": [["Implement push switch", "Both", "Right", "Left", "None"]], | |
"keymap": [ | |
[{ "d": true }, "\n\n\n0,3", { "x": 1, "d": true }, "\n\n\n0,3"], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void Main() | |
{ | |
var keycordPath = @""; // common\keycode.h | |
var qkPath = @""; // quantum\quantum_keycodes.h | |
var kc = keycordPath.ToFileInfo().OpenText().ReadToEnd(); | |
var qk = qkPath.ToFileInfo().OpenText().ReadToEnd(); | |
var parser = new KeycodeDefinitionParser(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This is the 'classic' fixed-space bitmap font for Adafruit_GFX since 1.0. | |
// See gfxfont.h for newer custom bitmap font info. | |
#ifndef FONT5X7_H | |
#define FONT5X7_H | |
#ifdef __AVR__ | |
#include <avr/io.h> | |
#include <avr/pgmspace.h> | |
#elif defined(ESP8266) |