Move matrix config to info.json, part 1 (#19985)
parent
b34d51d08d
commit
23c365b023
|
@ -16,13 +16,6 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
#define MATRIX_ROW_PINS { B1, F7, F6, F5, F4 }
|
|
||||||
#define MATRIX_COL_PINS { D3, D2, D1, D0, D4, C6, D7, E6, B4, B5, B3, B2 }
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
/* Locking resynchronize hack */
|
/* Locking resynchronize hack */
|
||||||
|
|
|
@ -6,6 +6,11 @@
|
||||||
"vid": "0x7654",
|
"vid": "0x7654",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["D3", "D2", "D1", "D0", "D4", "C6", "D7", "E6", "B4", "B5", "B3", "B2"],
|
||||||
|
"rows": ["B1", "F7", "F6", "F5", "F4"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"features": {
|
"features": {
|
||||||
"extrakey": true,
|
"extrakey": true,
|
||||||
"console": true,
|
"console": true,
|
||||||
|
|
|
@ -17,23 +17,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Keyboard Matrix Assignments
|
|
||||||
*
|
|
||||||
* Change this to how you wired your keyboard
|
|
||||||
* COLS: AVR pins used for columns, left to right
|
|
||||||
* ROWS: AVR pins used for rows, top to bottom
|
|
||||||
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
|
|
||||||
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
#define MATRIX_ROW_PINS { B0, B1, B2, B3, B7 }
|
|
||||||
#define MATRIX_COL_PINS { D0, D1, D2, D3, D5, D4, D6, D7, F7, F6, F5, F4, F1, F0 }
|
|
||||||
|
|
||||||
/* COL2ROW, ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
/* Locking resynchronize hack */
|
/* Locking resynchronize hack */
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x6161",
|
"pid": "0x6161",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["D0", "D1", "D2", "D3", "D5", "D4", "D6", "D7", "F7", "F6", "F5", "F4", "F1", "F0"],
|
||||||
|
"rows": ["B0", "B1", "B2", "B3", "B7"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"bootloader": "atmel-dfu",
|
"bootloader": "atmel-dfu",
|
||||||
"layout_aliases": {
|
"layout_aliases": {
|
||||||
|
|
|
@ -16,26 +16,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
// clang-format off
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Keyboard Matrix Assignments
|
|
||||||
*
|
|
||||||
* Change this to how you wired your keyboard
|
|
||||||
* COLS: AVR pins used for columns, left to right
|
|
||||||
* ROWS: AVR pins used for rows, top to bottom
|
|
||||||
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
|
|
||||||
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
#define MATRIX_ROW_PINS { D5, D6, D7, B0, B1, B2, B3, B4 }
|
|
||||||
#define MATRIX_COL_PINS { B5, D4, C0, C1, C2, C3 }
|
|
||||||
|
|
||||||
/* COL2ROW, ROW2COL*/
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
#define TAP_CODE_DELAY 10
|
#define TAP_CODE_DELAY 10
|
||||||
// clang-format on
|
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0xA455",
|
"pid": "0xA455",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["B5", "D4", "C0", "C1", "C2", "C3"],
|
||||||
|
"rows": ["D5", "D6", "D7", "B0", "B1", "B2", "B3", "B4"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"encoder": {
|
"encoder": {
|
||||||
"rotary": [
|
"rotary": [
|
||||||
{"pin_a": "D0", "pin_b": "D1"}
|
{"pin_a": "D0", "pin_b": "D1"}
|
||||||
|
|
|
@ -16,12 +16,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
#define MATRIX_ROW_PINS { F0, F5, F4, F6 }
|
|
||||||
#define MATRIX_COL_PINS { D6, D7, B5 }
|
|
||||||
|
|
||||||
#define DIODE_DIRECTION ROW2COL
|
|
||||||
|
|
||||||
#define SSD1306OLED
|
#define SSD1306OLED
|
||||||
#define RGB_DI_PIN B7
|
#define RGB_DI_PIN B7
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x7C99",
|
"pid": "0x7C99",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["D6", "D7", "B5"],
|
||||||
|
"rows": ["F0", "F5", "F4", "F6"]
|
||||||
|
},
|
||||||
|
"diode_direction": "ROW2COL",
|
||||||
"encoder": {
|
"encoder": {
|
||||||
"rotary": [
|
"rotary": [
|
||||||
{"pin_a": "C7", "pin_b": "F7"}
|
{"pin_a": "C7", "pin_b": "F7"}
|
||||||
|
|
|
@ -17,23 +17,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Keyboard Matrix Assignments
|
|
||||||
*
|
|
||||||
* Change this to how you wired your keyboard
|
|
||||||
* COLS: AVR pins used for columns, left to right
|
|
||||||
* ROWS: AVR pins used for rows, top to bottom
|
|
||||||
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
|
|
||||||
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
#define MATRIX_ROW_PINS { B3, B2, B1, B0, D4 }
|
|
||||||
#define MATRIX_COL_PINS { C7, F7, F6, F5, F4, F1, E6, D1, D0, D2, D3, D5, D6, D7 }
|
|
||||||
|
|
||||||
/* COL2ROW, ROW2COL*/
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
#define RGB_DI_PIN F0
|
#define RGB_DI_PIN F0
|
||||||
#ifdef RGB_DI_PIN
|
#ifdef RGB_DI_PIN
|
||||||
#define RGBLIGHT_EFFECT_BREATHING
|
#define RGBLIGHT_EFFECT_BREATHING
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x6873",
|
"pid": "0x6873",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["C7", "F7", "F6", "F5", "F4", "F1", "E6", "D1", "D0", "D2", "D3", "D5", "D6", "D7"],
|
||||||
|
"rows": ["B3", "B2", "B1", "B0", "D4"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"backlight": {
|
"backlight": {
|
||||||
"pin": "B7",
|
"pin": "B7",
|
||||||
"levels": 5,
|
"levels": 5,
|
||||||
|
|
|
@ -18,14 +18,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
/* key matrix pins */
|
|
||||||
#define MATRIX_ROW_PINS { B3, B2, B1, B0, D4 }
|
|
||||||
#define MATRIX_COL_PINS { F6, F5, F4, F1, E6, D0, D1, D2, D3, D5, D6, D7, B4, B5 }
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x6874",
|
"pid": "0x6874",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["F6", "F5", "F4", "F1", "E6", "D0", "D1", "D2", "D3", "D5", "D6", "D7", "B4", "B5"],
|
||||||
|
"rows": ["B3", "B2", "B1", "B0", "D4"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"backlight": {
|
"backlight": {
|
||||||
"pin": "B7"
|
"pin": "B7"
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,13 +1,5 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
/* key matrix pins */
|
|
||||||
#define MATRIX_ROW_PINS { D0, D1, D2, D3, D5 }
|
|
||||||
#define MATRIX_COL_PINS { F0, F1, E6, C7, C6, B7, D4, B1, B0, B5, B4, D7, D6, B3, F4 }
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x7267",
|
"pid": "0x7267",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["F0", "F1", "E6", "C7", "C6", "B7", "D4", "B1", "B0", "B5", "B4", "D7", "D6", "B3", "F4"],
|
||||||
|
"rows": ["D0", "D1", "D2", "D3", "D5"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"backlight": {
|
"backlight": {
|
||||||
"pin": "B6",
|
"pin": "B6",
|
||||||
"levels": 5
|
"levels": 5
|
||||||
|
|
|
@ -15,11 +15,6 @@
|
||||||
#define OLED_FONT_H "keyboards/1upkeyboards/pi40/lib/glcdfont.c"
|
#define OLED_FONT_H "keyboards/1upkeyboards/pi40/lib/glcdfont.c"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
#define MATRIX_ROW_PINS { GP21, GP20, GP19, GP18 }
|
|
||||||
#define MATRIX_COL_PINS { GP1, GP2, GP3, GP4, GP5, GP6, GP7, GP8, GP9, GP10, GP11, GP12 }
|
|
||||||
|
|
||||||
#define RGB_DI_PIN GP0
|
#define RGB_DI_PIN GP0
|
||||||
#define RGB_MATRIX_LED_COUNT 47
|
#define RGB_MATRIX_LED_COUNT 47
|
||||||
#define RGBLED_NUM 47
|
#define RGBLED_NUM 47
|
||||||
|
|
|
@ -6,6 +6,11 @@
|
||||||
"pid": "0x5600",
|
"pid": "0x5600",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["GP1", "GP2", "GP3", "GP4", "GP5", "GP6", "GP7", "GP8", "GP9", "GP10", "GP11", "GP12"],
|
||||||
|
"rows": ["GP21", "GP20", "GP19", "GP18"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"encoder": {
|
"encoder": {
|
||||||
"rotary": [
|
"rotary": [
|
||||||
{"pin_a": "GP14", "pin_b": "GP13"}
|
{"pin_a": "GP14", "pin_b": "GP13"}
|
||||||
|
|
|
@ -17,25 +17,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Keyboard Matrix Assignments
|
|
||||||
*
|
|
||||||
* Change this to how you wired your keyboard
|
|
||||||
* COLS: AVR pins used for columns, left to right
|
|
||||||
* ROWS: AVR pins used for rows, top to bottom
|
|
||||||
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
|
|
||||||
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
#define MATRIX_ROW_PINS \
|
|
||||||
{ D1, D0, F4, F5 }
|
|
||||||
#define MATRIX_COL_PINS \
|
|
||||||
{ D4, C6, F6, F7 }
|
|
||||||
|
|
||||||
/* COL2ROW, ROW2COL*/
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
#define RGB_DI_PIN D3
|
#define RGB_DI_PIN D3
|
||||||
#ifdef RGB_DI_PIN
|
#ifdef RGB_DI_PIN
|
||||||
# define RGBLED_NUM 16 // Add 12 if attaching the RGB LED ring
|
# define RGBLED_NUM 16 // Add 12 if attaching the RGB LED ring
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x5516",
|
"pid": "0x5516",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["D4", "C6", "F6", "F7"],
|
||||||
|
"rows": ["D1", "D0", "F4", "F5"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"bootloader": "caterina",
|
"bootloader": "caterina",
|
||||||
"community_layouts": ["ortho_4x4", "numpad_4x4"],
|
"community_layouts": ["ortho_4x4", "numpad_4x4"],
|
||||||
|
|
|
@ -19,24 +19,6 @@
|
||||||
|
|
||||||
#define MOUSEKEY_MOVE_DELTA 25
|
#define MOUSEKEY_MOVE_DELTA 25
|
||||||
|
|
||||||
/*
|
|
||||||
* Keyboard Matrix Assignments
|
|
||||||
*
|
|
||||||
* Change this to how you wired your keyboard
|
|
||||||
* COLS: AVR pins used for columns, left to right
|
|
||||||
* ROWS: AVR pins used for rows, top to bottom
|
|
||||||
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
|
|
||||||
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// 0 1 2 3
|
|
||||||
#define MATRIX_ROW_PINS { D1, D2, D3, D4 }
|
|
||||||
#define MATRIX_COL_PINS { D5, D6, C2, D0 }
|
|
||||||
|
|
||||||
/* COL2ROW, ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
#define RGB_DI_PIN B5
|
#define RGB_DI_PIN B5
|
||||||
#define RGB_MATRIX_LED_COUNT 20
|
#define RGB_MATRIX_LED_COUNT 20
|
||||||
#ifdef RGB_DI_PIN
|
#ifdef RGB_DI_PIN
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x5517",
|
"pid": "0x5517",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["D5", "D6", "C2", "D0"],
|
||||||
|
"rows": ["D1", "D2", "D3", "D4"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"encoder": {
|
"encoder": {
|
||||||
"rotary": [
|
"rotary": [
|
||||||
{"pin_a": "B1", "pin_b": "B2"},
|
{"pin_a": "B1", "pin_b": "B2"},
|
||||||
|
|
|
@ -1,13 +1,5 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
/* key matrix pins */
|
|
||||||
#define MATRIX_ROW_PINS { F4, F5, F6, F7 }
|
|
||||||
#define MATRIX_COL_PINS { D1, D0, D4, C6 }
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
#ifndef CONVERT_TO_PROTON_C
|
#ifndef CONVERT_TO_PROTON_C
|
||||||
# define LED_NUM_LOCK_PIN B0 // RXLED
|
# define LED_NUM_LOCK_PIN B0 // RXLED
|
||||||
# define LED_CAPS_LOCK_PIN D5 // TXLED
|
# define LED_CAPS_LOCK_PIN D5 // TXLED
|
||||||
|
|
|
@ -3,6 +3,11 @@
|
||||||
"pid": "0x0161",
|
"pid": "0x0161",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["D1", "D0", "D4", "C6"],
|
||||||
|
"rows": ["F4", "F5", "F6", "F7"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"bootloader": "caterina"
|
"bootloader": "caterina"
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,14 +17,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
/* key matrix pins */
|
|
||||||
#define MATRIX_ROW_PINS { B0, B1, B2, B3 }
|
|
||||||
#define MATRIX_COL_PINS { D0, D1, D2, D3, D4, D5, D6, C2, C4, C5, C6 }
|
|
||||||
|
|
||||||
/* COL2ROW, ROW2COL*/
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
#define RGB_DI_PIN C7
|
#define RGB_DI_PIN C7
|
||||||
#ifdef RGB_DI_PIN
|
#ifdef RGB_DI_PIN
|
||||||
#define RGBLED_NUM 6
|
#define RGBLED_NUM 6
|
||||||
|
|
|
@ -2,6 +2,11 @@
|
||||||
"usb": {
|
"usb": {
|
||||||
"device_version": "0.0.0"
|
"device_version": "0.0.0"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["D0", "D1", "D2", "D3", "D4", "D5", "D6", "C2", "C4", "C5", "C6"],
|
||||||
|
"rows": ["B0", "B1", "B2", "B3"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"encoder": {
|
"encoder": {
|
||||||
"rotary": [
|
"rotary": [
|
||||||
{"pin_a": "B6", "pin_b": "B7"},
|
{"pin_a": "B6", "pin_b": "B7"},
|
||||||
|
|
|
@ -17,14 +17,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
/* key matrix pins */
|
|
||||||
#define MATRIX_ROW_PINS { B4, B0, B2, B1 }
|
|
||||||
#define MATRIX_COL_PINS { D5, D3, D2, D1, D0, D6, D4, F7, F0, F1, F4 }
|
|
||||||
|
|
||||||
/* COL2ROW, ROW2COL*/
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
#define RGB_DI_PIN B3
|
#define RGB_DI_PIN B3
|
||||||
#ifdef RGB_DI_PIN
|
#ifdef RGB_DI_PIN
|
||||||
#define RGBLED_NUM 8
|
#define RGBLED_NUM 8
|
||||||
|
|
|
@ -2,6 +2,11 @@
|
||||||
"usb": {
|
"usb": {
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["D5", "D3", "D2", "D1", "D0", "D6", "D4", "F7", "F0", "F1", "F4"],
|
||||||
|
"rows": ["B4", "B0", "B2", "B1"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"encoder": {
|
"encoder": {
|
||||||
"rotary": [
|
"rotary": [
|
||||||
{"pin_a": "B5", "pin_b": "B6"},
|
{"pin_a": "B5", "pin_b": "B6"},
|
||||||
|
|
|
@ -25,11 +25,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
//#define MASTER_RIGHT
|
//#define MASTER_RIGHT
|
||||||
//#define EE_HANDS
|
//#define EE_HANDS
|
||||||
|
|
||||||
#define MATRIX_ROW_PINS { F6, F7, B1, B3 }
|
|
||||||
#define MATRIX_COL_PINS { F4, D4, C6, D7, E6, B4 }
|
|
||||||
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* ws2812 RGB LED */
|
/* ws2812 RGB LED */
|
||||||
#define RGB_DI_PIN D3
|
#define RGB_DI_PIN D3
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
{
|
{
|
||||||
"keyboard_name": "Zinc rev.1",
|
"keyboard_name": "Zinc rev.1",
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["F4", "D4", "C6", "D7", "E6", "B4"],
|
||||||
|
"rows": ["F6", "F7", "B1", "B3"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"split": {
|
"split": {
|
||||||
"soft_serial_pin": "D2"
|
"soft_serial_pin": "D2"
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,11 +25,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
//#define MASTER_RIGHT
|
//#define MASTER_RIGHT
|
||||||
//#define EE_HANDS
|
//#define EE_HANDS
|
||||||
|
|
||||||
#define MATRIX_ROW_PINS { D4, C6, D7, E6 }
|
|
||||||
#define MATRIX_COL_PINS { F4, F5, F6, F7, B1, B3}
|
|
||||||
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* ws2812 RGB LED */
|
/* ws2812 RGB LED */
|
||||||
#define RGB_DI_PIN D3
|
#define RGB_DI_PIN D3
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
{
|
{
|
||||||
"keyboard_name": "Zinc rev.A",
|
"keyboard_name": "Zinc rev.A",
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["F4", "F5", "F6", "F7", "B1", "B3"],
|
||||||
|
"rows": ["D4", "C6", "D7", "E6"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"split": {
|
"split": {
|
||||||
"soft_serial_pin": "D2"
|
"soft_serial_pin": "D2"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,5 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
/* key matrix pins */
|
|
||||||
#define MATRIX_ROW_PINS { C4, C5 }
|
|
||||||
#define MATRIX_COL_PINS { B3, B4, B5, B6, B7, C7, B2 }
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x6090",
|
"pid": "0x6090",
|
||||||
"device_version": "0.0.2"
|
"device_version": "0.0.2"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["B3", "B4", "B5", "B6", "B7", "C7", "B2"],
|
||||||
|
"rows": ["C4", "C5"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"encoder": {
|
"encoder": {
|
||||||
"rotary": [
|
"rotary": [
|
||||||
{"pin_a": "D0", "pin_b": "D1", "resolution": 1}
|
{"pin_a": "D0", "pin_b": "D1", "resolution": 1}
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
#pragma once
|
|
||||||
|
|
||||||
|
|
||||||
/* pcb default pin-out */
|
|
||||||
#define MATRIX_ROW_PINS { E6, B4, B5 }
|
|
||||||
#define MATRIX_COL_PINS { F4, F5, F6, F7, B1, B3, B2, B6, D1, D0, D4, C6, D7 }
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x5678",
|
"pid": "0x5678",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["F4", "F5", "F6", "F7", "B1", "B3", "B2", "B6", "D1", "D0", "D4", "C6", "D7"],
|
||||||
|
"rows": ["E6", "B4", "B5"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"bootloader": "caterina",
|
"bootloader": "caterina",
|
||||||
"layouts": {
|
"layouts": {
|
||||||
|
|
|
@ -16,14 +16,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
/* Keyboard Matrix Assignments */
|
|
||||||
#define MATRIX_ROW_PINS { F6 }
|
|
||||||
#define MATRIX_COL_PINS { F4, D7 }
|
|
||||||
|
|
||||||
/* COL2ROW, ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* RGB matrix key backlighting */
|
/* RGB matrix key backlighting */
|
||||||
#define RGB_DI_PIN B2
|
#define RGB_DI_PIN B2
|
||||||
#define RGB_MATRIX_LED_COUNT 2
|
#define RGB_MATRIX_LED_COUNT 2
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x3304",
|
"pid": "0x3304",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["F4", "D7"],
|
||||||
|
"rows": ["F6"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"indicators": {
|
"indicators": {
|
||||||
"caps_lock": "B7"
|
"caps_lock": "B7"
|
||||||
},
|
},
|
||||||
|
|
|
@ -21,22 +21,6 @@
|
||||||
//#define MASTER_RIGHT
|
//#define MASTER_RIGHT
|
||||||
//#define EE_HANDS
|
//#define EE_HANDS
|
||||||
|
|
||||||
/*
|
|
||||||
* Keyboard Matrix Assignments
|
|
||||||
*
|
|
||||||
* Change this to how you wired your keyboard
|
|
||||||
* COLS: AVR pins used for columns, left to right
|
|
||||||
* ROWS: AVR pins used for rows, top to bottom
|
|
||||||
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
|
|
||||||
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
#define MATRIX_ROW_PINS { D4, C6, D7, E6, B4 }
|
|
||||||
#define MATRIX_COL_PINS { F4, F5, F6, F7, B1 }
|
|
||||||
|
|
||||||
/* COL2ROW, ROW2COL*/
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
/* Locking resynchronize hack */
|
/* Locking resynchronize hack */
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x0F25",
|
"pid": "0x0F25",
|
||||||
"device_version": "1.0.0"
|
"device_version": "1.0.0"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["F4", "F5", "F6", "F7", "B1"],
|
||||||
|
"rows": ["D4", "C6", "D7", "E6", "B4"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"split": {
|
"split": {
|
||||||
"soft_serial_pin": "D0"
|
"soft_serial_pin": "D0"
|
||||||
},
|
},
|
||||||
|
|
|
@ -2,23 +2,6 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Keyboard Matrix Assignments
|
|
||||||
*
|
|
||||||
* Change this to how you wired your keyboard
|
|
||||||
* COLS: AVR pins used for columns, left to right
|
|
||||||
* ROWS: AVR pins used for rows, top to bottom
|
|
||||||
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
|
|
||||||
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
#define MATRIX_ROW_PINS { B2, D1, D0, D4 }
|
|
||||||
#define MATRIX_COL_PINS { C6, D7, E6, B4, B5, B6, B7, D6, F7, F6, F5, F4, F1, F0, B3, B1 }
|
|
||||||
|
|
||||||
/* COL2ROW, ROW2COL*/
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
/* Locking resynchronize hack */
|
/* Locking resynchronize hack */
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x0A0C",
|
"pid": "0x0A0C",
|
||||||
"device_version": "44.4.4"
|
"device_version": "44.4.4"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["C6", "D7", "E6", "B4", "B5", "B6", "B7", "D6", "F7", "F6", "F5", "F4", "F1", "F0", "B3", "B1"],
|
||||||
|
"rows": ["B2", "D1", "D0", "D4"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"bootloader": "caterina",
|
"bootloader": "caterina",
|
||||||
"community_layouts": ["ortho_4x4", "ortho_4x12"],
|
"community_layouts": ["ortho_4x4", "ortho_4x12"],
|
||||||
|
|
|
@ -2,23 +2,6 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Keyboard Matrix Assignments
|
|
||||||
*
|
|
||||||
* Change this to how you wired your keyboard
|
|
||||||
* COLS: AVR pins used for columns, left to right
|
|
||||||
* ROWS: AVR pins used for rows, top to bottom
|
|
||||||
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
|
|
||||||
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
#define MATRIX_ROW_PINS { B2, D1, D0, D4, C6 }
|
|
||||||
#define MATRIX_COL_PINS { D7, E6, B4, B5, B6, B7, D6, F7, F6, F5, F4, F1, F0, B3, B1 }
|
|
||||||
|
|
||||||
/* COL2ROW, ROW2COL*/
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
/* Locking resynchronize hack */
|
/* Locking resynchronize hack */
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x05B5",
|
"pid": "0x05B5",
|
||||||
"device_version": "1.0.0"
|
"device_version": "1.0.0"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["D7", "E6", "B4", "B5", "B6", "B7", "D6", "F7", "F6", "F5", "F4", "F1", "F0", "B3", "B1"],
|
||||||
|
"rows": ["B2", "D1", "D0", "D4", "C6"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"bootloader": "caterina",
|
"bootloader": "caterina",
|
||||||
"community_layouts": ["ortho_5x5", "ortho_5x10", "ortho_5x15"],
|
"community_layouts": ["ortho_5x5", "ortho_5x10", "ortho_5x15"],
|
||||||
|
|
|
@ -21,22 +21,6 @@
|
||||||
//#define MASTER_RIGHT
|
//#define MASTER_RIGHT
|
||||||
//#define EE_HANDS
|
//#define EE_HANDS
|
||||||
|
|
||||||
/*
|
|
||||||
* Keyboard Matrix Assignments
|
|
||||||
*
|
|
||||||
* Change this to how you wired your keyboard
|
|
||||||
* COLS: AVR pins used for columns, left to right
|
|
||||||
* ROWS: AVR pins used for rows, top to bottom
|
|
||||||
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
|
|
||||||
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
#define MATRIX_ROW_PINS { D7, E6 }
|
|
||||||
#define MATRIX_COL_PINS { F6, F7, B1 }
|
|
||||||
|
|
||||||
/* COL2ROW, ROW2COL*/
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
/* Locking resynchronize hack */
|
/* Locking resynchronize hack */
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x0F61",
|
"pid": "0x0F61",
|
||||||
"device_version": "1.0.0"
|
"device_version": "1.0.0"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["F6", "F7", "B1"],
|
||||||
|
"rows": ["D7", "E6"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"split": {
|
"split": {
|
||||||
"soft_serial_pin": "D0"
|
"soft_serial_pin": "D0"
|
||||||
},
|
},
|
||||||
|
|
|
@ -21,22 +21,6 @@
|
||||||
//#define MASTER_RIGHT
|
//#define MASTER_RIGHT
|
||||||
//#define EE_HANDS
|
//#define EE_HANDS
|
||||||
|
|
||||||
/*
|
|
||||||
* Keyboard Matrix Assignments
|
|
||||||
*
|
|
||||||
* Change this to how you wired your keyboard
|
|
||||||
* COLS: AVR pins used for columns, left to right
|
|
||||||
* ROWS: AVR pins used for rows, top to bottom
|
|
||||||
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
|
|
||||||
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
#define MATRIX_ROW_PINS { D7, E6, B4 }
|
|
||||||
#define MATRIX_COL_PINS { F6, F7, B1, B3, B2 }
|
|
||||||
|
|
||||||
/* COL2ROW, ROW2COL*/
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
/* Locking resynchronize hack */
|
/* Locking resynchronize hack */
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x0F00",
|
"pid": "0x0F00",
|
||||||
"device_version": "1.0.0"
|
"device_version": "1.0.0"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["F6", "F7", "B1", "B3", "B2"],
|
||||||
|
"rows": ["D7", "E6", "B4"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"split": {
|
"split": {
|
||||||
"soft_serial_pin": "D0"
|
"soft_serial_pin": "D0"
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,13 +1,5 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
/* key matrix pins */
|
|
||||||
#define MATRIX_ROW_PINS { F7, B1, B3, B2, B6 }
|
|
||||||
#define MATRIX_COL_PINS { B4, E6, D7, C6, D4, D0 }
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x6060",
|
"pid": "0x6060",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["B4", "E6", "D7", "C6", "D4", "D0"],
|
||||||
|
"rows": ["F7", "B1", "B3", "B2", "B6"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"backlight": {
|
"backlight": {
|
||||||
"pin": "B5"
|
"pin": "B5"
|
||||||
},
|
},
|
||||||
|
|
|
@ -17,23 +17,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Keyboard Matrix Assignments
|
|
||||||
*
|
|
||||||
* Change this to how you wired your keyboard
|
|
||||||
* COLS: AVR pins used for columns, left to right
|
|
||||||
* ROWS: AVR pins used for rows, top to bottom
|
|
||||||
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
|
|
||||||
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
#define MATRIX_ROW_PINS { D4, C6, D7, E6 }
|
|
||||||
#define MATRIX_COL_PINS { F4, F5, F6, F7, B1, B3, B2 }
|
|
||||||
|
|
||||||
/* COL2ROW, ROW2COL*/
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
/* Locking resynchronize hack */
|
/* Locking resynchronize hack */
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x4A1F",
|
"pid": "0x4A1F",
|
||||||
"device_version": "1.0.0"
|
"device_version": "1.0.0"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["F4", "F5", "F6", "F7", "B1", "B3", "B2"],
|
||||||
|
"rows": ["D4", "C6", "D7", "E6"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"split": {
|
"split": {
|
||||||
"soft_serial_pin": "D0"
|
"soft_serial_pin": "D0"
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
/* Copyright 2018
|
|
||||||
*
|
|
||||||
* This program is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Keyboard Matrix Assignments
|
|
||||||
*
|
|
||||||
* Change this to how you wired your keyboard
|
|
||||||
* COLS: AVR pins used for columns, left to right
|
|
||||||
* ROWS: AVR pins used for rows, top to bottom
|
|
||||||
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
|
|
||||||
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
#define MATRIX_ROW_PINS { B4, E6, D7, C6, D4, D0, D1, D2, D3 }
|
|
||||||
#define MATRIX_COL_PINS { B5, B6, B2, B3, B1, F7, F6, F5, F4 }
|
|
||||||
|
|
||||||
/* COL2ROW, ROW2COL*/
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
|
@ -1,4 +1,9 @@
|
||||||
{
|
{
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["B5", "B6", "B2", "B3", "B1", "F7", "F6", "F5", "F4"],
|
||||||
|
"rows": ["B4", "E6", "D7", "C6", "D4", "D0", "D1", "D2", "D3"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"bootloader": "caterina"
|
"bootloader": "caterina"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
/* Copyright 2018
|
|
||||||
*
|
|
||||||
* This program is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Keyboard Matrix Assignments
|
|
||||||
*
|
|
||||||
* Change this to how you wired your keyboard
|
|
||||||
* COLS: AVR pins used for columns, left to right
|
|
||||||
* ROWS: AVR pins used for rows, top to bottom
|
|
||||||
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
|
|
||||||
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
#define MATRIX_ROW_PINS { D3, D2, D1, D0, B7, B3, B2, B1, B0 }
|
|
||||||
#define MATRIX_COL_PINS { C6, C7, D6, D7, B5, B6, F7, F6, F5 }
|
|
||||||
|
|
||||||
/* COL2ROW, ROW2COL*/
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
|
@ -1,4 +1,9 @@
|
||||||
{
|
{
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["C6", "C7", "D6", "D7", "B5", "B6", "F7", "F6", "F5"],
|
||||||
|
"rows": ["D3", "D2", "D1", "D0", "B7", "B3", "B2", "B1", "B0"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"bootloader": "halfkay"
|
"bootloader": "halfkay"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,5 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
/* key matrix pins */
|
|
||||||
#define MATRIX_ROW_PINS { D3, D2, D1, D0, D4, C6, D7, E6 }
|
|
||||||
#define MATRIX_COL_PINS { F4, F5, F6, F7, B1, B3, B2, B6 }
|
|
||||||
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x4C55",
|
"pid": "0x4C55",
|
||||||
"device_version": "10.0.1"
|
"device_version": "10.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["F4", "F5", "F6", "F7", "B1", "B3", "B2", "B6"],
|
||||||
|
"rows": ["D3", "D2", "D1", "D0", "D4", "C6", "D7", "E6"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"backlight": {
|
"backlight": {
|
||||||
"pin": "B5",
|
"pin": "B5",
|
||||||
"levels": 4
|
"levels": 4
|
||||||
|
|
|
@ -17,23 +17,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Keyboard Matrix Assignments
|
|
||||||
*
|
|
||||||
* Change this to how you wired your keyboard
|
|
||||||
* COLS: AVR pins used for columns, left to right
|
|
||||||
* ROWS: AVR pins used for rows, top to bottom
|
|
||||||
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
|
|
||||||
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
#define MATRIX_ROW_PINS { B6, B2, B3, B1, F7, F6, F5, F4 }
|
|
||||||
#define MATRIX_COL_PINS { D3, D2, D1, D0, D4, C6, D7, E6, B4 }
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
/* Locking resynchronize hack */
|
/* Locking resynchronize hack */
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x4D68",
|
"pid": "0x4D68",
|
||||||
"device_version": "1.0.1"
|
"device_version": "1.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["D3", "D2", "D1", "D0", "D4", "C6", "D7", "E6", "B4"],
|
||||||
|
"rows": ["B6", "B2", "B3", "B1", "F7", "F6", "F5", "F4"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"backlight": {
|
"backlight": {
|
||||||
"pin": "B5",
|
"pin": "B5",
|
||||||
"breathing": true
|
"breathing": true
|
||||||
|
|
|
@ -16,23 +16,6 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Keyboard Matrix Assignments
|
|
||||||
*
|
|
||||||
* Change this to how you wired your keyboard
|
|
||||||
* COLS: AVR pins used for columns, left to right
|
|
||||||
* ROWS: AVR pins used for rows, top to bottom
|
|
||||||
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
|
|
||||||
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
#define MATRIX_ROW_PINS { D3, D2, D1, D0 }
|
|
||||||
#define MATRIX_COL_PINS { F4, F5, F6, F7, B1, B3, B2, B6, D4, C6, D7, E6 }
|
|
||||||
|
|
||||||
/* COL2ROW, ROW2COL*/
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
// enable RGB underglow
|
// enable RGB underglow
|
||||||
#define RGB_DI_PIN B4
|
#define RGB_DI_PIN B4
|
||||||
#define RGBLIGHT_EFFECT_BREATHING
|
#define RGBLIGHT_EFFECT_BREATHING
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x0A0C",
|
"pid": "0x0A0C",
|
||||||
"device_version": "4.4.4"
|
"device_version": "4.4.4"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["F4", "F5", "F6", "F7", "B1", "B3", "B2", "B6", "D4", "C6", "D7", "E6"],
|
||||||
|
"rows": ["D3", "D2", "D1", "D0"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"backlight": {
|
"backlight": {
|
||||||
"pin": "B5"
|
"pin": "B5"
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,28 +0,0 @@
|
||||||
/* Copyright 2021
|
|
||||||
*
|
|
||||||
* This program is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
|
|
||||||
/* key matrix pins
|
|
||||||
* Direct pins is not used because there is not a shared ground position
|
|
||||||
* between all compatible microcontrollers.
|
|
||||||
*/
|
|
||||||
#define MATRIX_ROW_PINS { D7 }
|
|
||||||
#define MATRIX_COL_PINS { D1, D0, D4, C6, E6, B4, F4, F5, F6, F7, B3, B2 }
|
|
||||||
|
|
||||||
/* doesn't really matter lol */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
|
@ -1,4 +1,9 @@
|
||||||
{
|
{
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["D1", "D0", "D4", "C6", "E6", "B4", "F4", "F5", "F6", "F7", "B3", "B2"],
|
||||||
|
"rows": ["D7"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"bootloader": "caterina"
|
"bootloader": "caterina"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,30 +0,0 @@
|
||||||
/* Copyright 2021
|
|
||||||
*
|
|
||||||
* This program is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
|
|
||||||
/* key matrix pins */
|
|
||||||
|
|
||||||
// Note from original contributor (ryjelsum):
|
|
||||||
// Untested - don't have teensy2. if some keys do not function or are in wrong place,
|
|
||||||
// please check the pin definitions. I may have screwed up. :)
|
|
||||||
|
|
||||||
#define MATRIX_ROW_PINS { D3 }
|
|
||||||
#define MATRIX_COL_PINS { B7, D0, D1, D2, C6, C7, F6, F7, B6, B5, D7, D6 }
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
|
@ -1,4 +1,9 @@
|
||||||
{
|
{
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["B7", "D0", "D1", "D2", "C6", "C7", "F6", "F7", "B6", "B5", "D7", "D6"],
|
||||||
|
"rows": ["D3"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"bootloader": "halfkay"
|
"bootloader": "halfkay"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,5 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
/* key matrix pins */
|
|
||||||
#define MATRIX_ROW_PINS { F7, B1, B3, B2, B6 }
|
|
||||||
#define MATRIX_COL_PINS { B4, E6, D7, C6, D4, D0 }
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* Locking resynchronize hack */
|
/* Locking resynchronize hack */
|
||||||
#define LOCKING_RESYNC_ENABLE
|
#define LOCKING_RESYNC_ENABLE
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x546F",
|
"pid": "0x546F",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["B4", "E6", "D7", "C6", "D4", "D0"],
|
||||||
|
"rows": ["F7", "B1", "B3", "B2", "B6"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"bootloader": "caterina",
|
"bootloader": "caterina",
|
||||||
"community_layouts": ["ortho_3x10"],
|
"community_layouts": ["ortho_3x10"],
|
||||||
|
|
|
@ -18,13 +18,6 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
/* key matrix pins */
|
|
||||||
#define MATRIX_ROW_PINS { D3, D5, D7, D6 }
|
|
||||||
#define MATRIX_COL_PINS { E6, B0, B1, B2, B3, B7, F6, F5, F4, C7, F7, C6, B6, D4 }
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x4511",
|
"pid": "0x4511",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["E6", "B0", "B1", "B2", "B3", "B7", "F6", "F5", "F4", "C7", "F7", "C6", "B6", "D4"],
|
||||||
|
"rows": ["D3", "D5", "D7", "D6"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"encoder": {
|
"encoder": {
|
||||||
"rotary": [
|
"rotary": [
|
||||||
{"pin_a": "B4", "pin_b": "B5"}
|
{"pin_a": "B4", "pin_b": "B5"}
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
#pragma once
|
|
||||||
|
|
||||||
|
|
||||||
/* key matrix pins */
|
|
||||||
#define MATRIX_ROW_PINS { D1, D0, D4 }
|
|
||||||
#define MATRIX_COL_PINS { C6, D7, E6, B4 }
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x2019",
|
"pid": "0x2019",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["C6", "D7", "E6", "B4"],
|
||||||
|
"rows": ["D1", "D0", "D4"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"bootloader": "caterina",
|
"bootloader": "caterina",
|
||||||
"layouts": {
|
"layouts": {
|
||||||
|
|
|
@ -1,13 +1,5 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
// ROWS: Top to bottom, COLS: Left to right
|
|
||||||
#define MATRIX_ROW_PINS {C2,D0,B0,C7,C5}
|
|
||||||
#define MATRIX_COL_PINS {C4,C6,B7,B6,B5,B4,B3,B2,B1,D6,D5,D4,D2,D1}
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
#define RGB_DI_PIN D3
|
#define RGB_DI_PIN D3
|
||||||
#define RGBLED_NUM 12
|
#define RGBLED_NUM 12
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x0001",
|
"pid": "0x0001",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["C4", "C6", "B7", "B6", "B5", "B4", "B3", "B2", "B1", "D6", "D5", "D4", "D2", "D1"],
|
||||||
|
"rows": ["C2", "D0", "B0", "C7", "C5"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"qmk_lufa_bootloader": {
|
"qmk_lufa_bootloader": {
|
||||||
"esc_input": "C2",
|
"esc_input": "C2",
|
||||||
"esc_output": "C4"
|
"esc_output": "C4"
|
||||||
|
|
|
@ -16,15 +16,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
// ROWS: Top to bottom, COLS: Left to right
|
|
||||||
|
|
||||||
#define MATRIX_ROW_PINS {B15,A9,B7,A1,A2}
|
|
||||||
#define MATRIX_COL_PINS {A3,A4,F1,F0,C15,C14,C13,B9,B8,B6,B5,B4,B3,A15}
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
#define RGBLED_NUM 12
|
#define RGBLED_NUM 12
|
||||||
#define WS2812_EXTERNAL_PULLUP
|
#define WS2812_EXTERNAL_PULLUP
|
||||||
#define RGB_DI_PIN A8
|
#define RGB_DI_PIN A8
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x0011",
|
"pid": "0x0011",
|
||||||
"device_version": "0.0.2"
|
"device_version": "0.0.2"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["A3", "A4", "F1", "F0", "C15", "C14", "C13", "B9", "B8", "B6", "B5", "B4", "B3", "A15"],
|
||||||
|
"rows": ["B15", "A9", "B7", "A1", "A2"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"indicators": {
|
"indicators": {
|
||||||
"caps_lock": "A10"
|
"caps_lock": "A10"
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright 2020 Stefan Sundin "4pplet" <4pplet@protonmail.com>
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
|
|
||||||
// ROWS: Top to bottom, COLS: Left to right
|
|
||||||
#define MATRIX_ROW_PINS {D0,C2,C4,D4,D2}
|
|
||||||
#define MATRIX_COL_PINS {C5,C6,C7,B7,B6,B5,B4,B3,B2,B1,B0,D6,D5,D3,D1}
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x0004",
|
"pid": "0x0004",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["C5", "C6", "C7", "B7", "B6", "B5", "B4", "B3", "B2", "B1", "B0", "D6", "D5", "D3", "D1"],
|
||||||
|
"rows": ["D0", "C2", "C4", "D4", "D2"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"qmk_lufa_bootloader": {
|
"qmk_lufa_bootloader": {
|
||||||
"esc_input": "D0",
|
"esc_input": "D0",
|
||||||
"esc_output": "C4"
|
"esc_output": "C4"
|
||||||
|
|
|
@ -16,10 +16,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define MATRIX_COL_PINS { A0, B1, B0, A4, B5, B4, B3 }
|
|
||||||
#define MATRIX_ROW_PINS { A2, A1, B8, A10, C15, A15, B7, B6, C14, C13}
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
#define BACKLIGHT_PWM_DRIVER PWMD2
|
#define BACKLIGHT_PWM_DRIVER PWMD2
|
||||||
#define BACKLIGHT_PWM_CHANNEL 4
|
#define BACKLIGHT_PWM_CHANNEL 4
|
||||||
#define BACKLIGHT_PAL_MODE 2
|
#define BACKLIGHT_PAL_MODE 2
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x0007",
|
"pid": "0x0007",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["A0", "B1", "B0", "A4", "B5", "B4", "B3"],
|
||||||
|
"rows": ["A2", "A1", "B8", "A10", "C15", "A15", "B7", "B6", "C14", "C13"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"backlight": {
|
"backlight": {
|
||||||
"pin": "A3",
|
"pin": "A3",
|
||||||
"levels": 10,
|
"levels": 10,
|
||||||
|
|
|
@ -16,10 +16,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define MATRIX_COL_PINS { A0, A3, A4, A7, B5, B4, B3 }
|
|
||||||
#define MATRIX_ROW_PINS { A2, A1, B8, A10, C15, A15, B7, B6, C14, C13}
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
#define BACKLIGHT_PWM_DRIVER PWMD3
|
#define BACKLIGHT_PWM_DRIVER PWMD3
|
||||||
#define BACKLIGHT_PWM_CHANNEL 1
|
#define BACKLIGHT_PWM_CHANNEL 1
|
||||||
#define BACKLIGHT_PAL_MODE 1
|
#define BACKLIGHT_PAL_MODE 1
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x0010",
|
"pid": "0x0010",
|
||||||
"device_version": "0.0.2"
|
"device_version": "0.0.2"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["A0", "A3", "A4", "A7", "B5", "B4", "B3"],
|
||||||
|
"rows": ["A2", "A1", "B8", "A10", "C15", "A15", "B7", "B6", "C14", "C13"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"backlight": {
|
"backlight": {
|
||||||
"pin": "A6",
|
"pin": "A6",
|
||||||
"levels": 6,
|
"levels": 6,
|
||||||
|
|
|
@ -16,10 +16,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define MATRIX_COL_PINS { A1, B12, B14, A2, A0, A3, A4}
|
|
||||||
#define MATRIX_ROW_PINS { C14, C13, B5, B4, B8, A15, B3, B9, A5, A7}
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
#define LOCKING_SUPPORT_ENABLE
|
||||||
/* Locking resynchronize hack */
|
/* Locking resynchronize hack */
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x0009",
|
"pid": "0x0009",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["A1", "B12", "B14", "A2", "A0", "A3", "A4"],
|
||||||
|
"rows": ["C14", "C13", "B5", "B4", "B8", "A15", "B3", "B9", "A5", "A7"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "STM32F411",
|
"processor": "STM32F411",
|
||||||
"bootloader": "stm32-dfu",
|
"bootloader": "stm32-dfu",
|
||||||
"community_layouts": ["60_iso"],
|
"community_layouts": ["60_iso"],
|
||||||
|
|
|
@ -1,13 +1,5 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
// ROWS: Top to bottom, COLS: Left to right
|
|
||||||
#define MATRIX_ROW_PINS {C2,D0,B0,C7,C5}
|
|
||||||
#define MATRIX_COL_PINS {C4,C6,B7,B6,B5,B4,B3,B2,B1,D6,D5,D4,D2,D1}
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
#define RGB_DI_PIN D3
|
#define RGB_DI_PIN D3
|
||||||
#define RGBLED_NUM 12
|
#define RGBLED_NUM 12
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x0002",
|
"pid": "0x0002",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["C4", "C6", "B7", "B6", "B5", "B4", "B3", "B2", "B1", "D6", "D5", "D4", "D2", "D1"],
|
||||||
|
"rows": ["C2", "D0", "B0", "C7", "C5"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"qmk_lufa_bootloader": {
|
"qmk_lufa_bootloader": {
|
||||||
"esc_input": "C2",
|
"esc_input": "C2",
|
||||||
"esc_output": "C4"
|
"esc_output": "C4"
|
||||||
|
|
|
@ -1,26 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright 2022 Stefan Sundin "4pplet" <mail@4pplet.com>
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
|
|
||||||
// ROWS: Top to bottom, COLS: Left to right
|
|
||||||
|
|
||||||
#define MATRIX_ROW_PINS {D4,D1,C2,C4,C7,B2}
|
|
||||||
#define MATRIX_COL_PINS {D3,D0,D2,B6,B5,B4,B3,D6,D5,B0,B1}
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x0003",
|
"pid": "0x0003",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["D3", "D0", "D2", "B6", "B5", "B4", "B3", "D6", "D5", "B0", "B1"],
|
||||||
|
"rows": ["D4", "D1", "C2", "C4", "C7", "B2"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"qmk_lufa_bootloader": {
|
"qmk_lufa_bootloader": {
|
||||||
"esc_input": "D4",
|
"esc_input": "D4",
|
||||||
"esc_output": "D3"
|
"esc_output": "D3"
|
||||||
|
|
|
@ -16,15 +16,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
// ROWS: Top to bottom, COLS: Left to right
|
|
||||||
|
|
||||||
#define MATRIX_ROW_PINS {C2,D0,B0,D6,D5}
|
|
||||||
#define MATRIX_COL_PINS {C4,C5,D2,C6,C7,B7,B6,B5,B4,B3,B2,B1,D1,D4}
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
#define RGB_DI_PIN D3
|
#define RGB_DI_PIN D3
|
||||||
#define RGBLED_NUM 1
|
#define RGBLED_NUM 1
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x0005",
|
"pid": "0x0005",
|
||||||
"device_version": "0.0.2"
|
"device_version": "0.0.2"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["C4", "C5", "D2", "C6", "C7", "B7", "B6", "B5", "B4", "B3", "B2", "B1", "D1", "D4"],
|
||||||
|
"rows": ["C2", "D0", "B0", "D6", "D5"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"qmk_lufa_bootloader": {
|
"qmk_lufa_bootloader": {
|
||||||
"esc_input": "C4",
|
"esc_input": "C4",
|
||||||
"esc_output": "C2"
|
"esc_output": "C2"
|
||||||
|
|
|
@ -16,15 +16,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
// ROWS: Top to bottom, COLS: Left to right
|
|
||||||
|
|
||||||
#define MATRIX_ROW_PINS {C2,D0,B0,D6,D5}
|
|
||||||
#define MATRIX_COL_PINS {C4,C5,D2,C6,C7,B7,B6,B5,B4,B3,B2,B1,D1,D4}
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
#define RGB_DI_PIN D3
|
#define RGB_DI_PIN D3
|
||||||
#define RGBLED_NUM 1
|
#define RGBLED_NUM 1
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x0008",
|
"pid": "0x0008",
|
||||||
"device_version": "0.0.3"
|
"device_version": "0.0.3"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["C4", "C5", "D2", "C6", "C7", "B7", "B6", "B5", "B4", "B3", "B2", "B1", "D1", "D4"],
|
||||||
|
"rows": ["C2", "D0", "B0", "D6", "D5"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"qmk_lufa_bootloader": {
|
"qmk_lufa_bootloader": {
|
||||||
"esc_input": "C4",
|
"esc_input": "C4",
|
||||||
"esc_output": "C2"
|
"esc_output": "C2"
|
||||||
|
|
|
@ -16,15 +16,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
// ROWS: Top to bottom, COLS: Left to right
|
|
||||||
|
|
||||||
#define MATRIX_ROW_PINS {B14,A9,B6,B5,B4}
|
|
||||||
#define MATRIX_COL_PINS {B2,A4,A3,A2,F1,F0,C15,C14,C13,B9,B8,B7,A15,B3}
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
#define RGBLED_NUM 1
|
#define RGBLED_NUM 1
|
||||||
#define WS2812_EXTERNAL_PULLUP
|
#define WS2812_EXTERNAL_PULLUP
|
||||||
#define RGB_DI_PIN A8
|
#define RGB_DI_PIN A8
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x000E",
|
"pid": "0x000E",
|
||||||
"device_version": "0.0.4"
|
"device_version": "0.0.4"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["B2", "A4", "A3", "A2", "F1", "F0", "C15", "C14", "C13", "B9", "B8", "B7", "A15", "B3"],
|
||||||
|
"rows": ["B14", "A9", "B6", "B5", "B4"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "STM32F072",
|
"processor": "STM32F072",
|
||||||
"bootloader": "stm32-dfu",
|
"bootloader": "stm32-dfu",
|
||||||
"layouts": {
|
"layouts": {
|
||||||
|
|
|
@ -1,26 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright 2022 Stefan Sundin "4pplet" <4pplet@protonmail.com>
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
|
|
||||||
// ROWS: Top to bottom, COLS: Left to right
|
|
||||||
|
|
||||||
#define MATRIX_ROW_PINS {B14,A9,B6,B5,B4}
|
|
||||||
#define MATRIX_COL_PINS {B2,A4,A3,A2,F1,F0,C15,C14,C13,B9,B8,B7,A15,B3}
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x000D",
|
"pid": "0x000D",
|
||||||
"device_version": "0.0.4"
|
"device_version": "0.0.4"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["B2", "A4", "A3", "A2", "F1", "F0", "C15", "C14", "C13", "B9", "B8", "B7", "A15", "B3"],
|
||||||
|
"rows": ["B14", "A9", "B6", "B5", "B4"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "STM32F072",
|
"processor": "STM32F072",
|
||||||
"bootloader": "stm32-dfu",
|
"bootloader": "stm32-dfu",
|
||||||
"layouts": {
|
"layouts": {
|
||||||
|
|
|
@ -1,26 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright 2022 Stefan Sundin "4pplet" <mail@4pplet.com>
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
|
|
||||||
// ROWS: Top to bottom, COLS: Left to right
|
|
||||||
|
|
||||||
#define MATRIX_ROW_PINS {B14,A9,B6,B5,B4}
|
|
||||||
#define MATRIX_COL_PINS {B2,A4,A3,A2,F1,F0,C15,C14,C13,B9,B8,B7,A15,B3}
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x000C",
|
"pid": "0x000C",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["B2", "A4", "A3", "A2", "F1", "F0", "C15", "C14", "C13", "B9", "B8", "B7", "A15", "B3"],
|
||||||
|
"rows": ["B14", "A9", "B6", "B5", "B4"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "STM32F072",
|
"processor": "STM32F072",
|
||||||
"bootloader": "stm32-dfu",
|
"bootloader": "stm32-dfu",
|
||||||
"layouts": {
|
"layouts": {
|
||||||
|
|
|
@ -16,14 +16,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
// ROWS: Top to bottom, COLS: Left to right
|
|
||||||
#define MATRIX_ROW_PINS {C4,C5,B4,B3,B1,B0,D6,D5,D3,D4,D1,D2}
|
|
||||||
#define MATRIX_COL_PINS {C6,C7,B7,B6,B5,B2,D0,C2}
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
#define RGB_DI_PIN D7
|
#define RGB_DI_PIN D7
|
||||||
#define RGBLED_NUM 2
|
#define RGBLED_NUM 2
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x0006",
|
"pid": "0x0006",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["C6", "C7", "B7", "B6", "B5", "B2", "D0", "C2"],
|
||||||
|
"rows": ["C4", "C5", "B4", "B3", "B1", "B0", "D6", "D5", "D3", "D4", "D1", "D2"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"qmk_lufa_bootloader": {
|
"qmk_lufa_bootloader": {
|
||||||
"esc_input": "C4",
|
"esc_input": "C4",
|
||||||
"esc_output": "C6"
|
"esc_output": "C6"
|
||||||
|
|
|
@ -16,14 +16,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
// ROWS: Top to bottom, COLS: Left to right
|
|
||||||
#define MATRIX_ROW_PINS {B13,B12,A5,A4,A2,A1,F0,C15,C13,C14,F1,A0}
|
|
||||||
#define MATRIX_COL_PINS {B2,B1,B0,A7,A6,A3,B9,B8}
|
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
#define RGBLED_NUM 2
|
#define RGBLED_NUM 2
|
||||||
#define WS2812_EXTERNAL_PULLUP
|
#define WS2812_EXTERNAL_PULLUP
|
||||||
#define RGB_DI_PIN A8
|
#define RGB_DI_PIN A8
|
||||||
|
|
|
@ -8,6 +8,11 @@
|
||||||
"pid": "0x000F",
|
"pid": "0x000F",
|
||||||
"device_version": "0.0.2"
|
"device_version": "0.0.2"
|
||||||
},
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["B2", "B1", "B0", "A7", "A6", "A3", "B9", "B8"],
|
||||||
|
"rows": ["B13", "B12", "A5", "A4", "A2", "A1", "F0", "C15", "C13", "C14", "F1", "A0"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "STM32F072",
|
"processor": "STM32F072",
|
||||||
"bootloader": "stm32-dfu",
|
"bootloader": "stm32-dfu",
|
||||||
"layouts": {
|
"layouts": {
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue