Move matrix config to info.json, part 2 (#19987)

This commit is contained in:
Ryan
2023-03-10 22:16:56 +11:00
committed by GitHub
parent 80661e5f19
commit dd086a51d8
494 changed files with 1235 additions and 3287 deletions

View File

@@ -15,14 +15,6 @@
*/
#pragma once
// Key matrix (TtB, LtR)
#define MATRIX_COL_PINS \
{ B4, D7, D6, D4, F7, F6, F5, F4 }
#define MATRIX_ROW_PINS \
{ C7, C6, B6, B5 }
#define DIODE_DIRECTION COL2ROW
// RGB matrix
#define DRIVER_ADDR_1 0b1110100
#define DRIVER_COUNT 1

View File

@@ -1,4 +1,9 @@
{
"matrix_pins": {
"cols": ["B4", "D7", "D6", "D4", "F7", "F6", "F5", "F4"],
"rows": ["C7", "C6", "B6", "B5"]
},
"diode_direction": "COL2ROW",
"processor": "atmega32u4",
"bootloader": "atmel-dfu"
}