Move matrix config to info.json, part 3 (#19991)
Co-authored-by: Nick Brassel <nick@tzarc.org>
This commit is contained in:
parent
76cc7fe109
commit
ace372d90d
623 changed files with 1593 additions and 4581 deletions
|
@ -29,9 +29,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
#define RGBLIGHT_EFFECT_TWINKLE
|
||||
#define RGB_MATRIX_LED_COUNT RGBLED_NUM
|
||||
|
||||
/* COL2ROW, ROW2COL*/
|
||||
#define DIODE_DIRECTION COL2ROW
|
||||
|
||||
#define RGBLIGHT_LIMIT_VAL 120
|
||||
#define USB_MAX_POWER_CONSUMPTION 500
|
||||
|
||||
|
|
|
@ -16,7 +16,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
|
||||
#pragma once
|
||||
|
||||
#define MATRIX_ROW_PINS { D7, D1, D5, D6, C2 }
|
||||
#define MATRIX_COL_PINS { C3, C4, C5, C6, C7, A7, A6, A5, A4, A3, A2, A1, A0 }
|
||||
|
||||
#define RGB_DI_PIN B3
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
{
|
||||
"matrix_pins": {
|
||||
"cols": ["C3", "C4", "C5", "C6", "C7", "A7", "A6", "A5", "A4", "A3", "A2", "A1", "A0"],
|
||||
"rows": ["D7", "D1", "D5", "D6", "C2"]
|
||||
},
|
||||
"diode_direction": "COL2ROW",
|
||||
"processor": "atmega32a",
|
||||
"bootloader": "usbasploader",
|
||||
"encoder": {
|
||||
|
|
|
@ -16,7 +16,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
|
||||
#pragma once
|
||||
|
||||
#define MATRIX_ROW_PINS { A15, B10, A14, A13, A7 }
|
||||
#define MATRIX_COL_PINS { A8, A6, B0, B1, B2, B4, B5, A1, A2, B3, B9, A10, A9 }
|
||||
|
||||
#define RGB_DI_PIN A3
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
{
|
||||
"matrix_pins": {
|
||||
"cols": ["A8", "A6", "B0", "B1", "B2", "B4", "B5", "A1", "A2", "B3", "B9", "A10", "A9"],
|
||||
"rows": ["A15", "B10", "A14", "A13", "A7"]
|
||||
},
|
||||
"diode_direction": "COL2ROW",
|
||||
"processor": "STM32F303",
|
||||
"bootloader": "stm32-dfu",
|
||||
"board": "QMK_PROTON_C",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue