From 8e92cd27cf93e4610ff48de893962aec98169583 Mon Sep 17 00:00:00 2001
From: James Young <18669334+noroadsleft@users.noreply.github.com>
Date: Mon, 3 Jun 2024 23:26:38 -0700
Subject: [PATCH] Convert `config.h` to data-driven
---
keyboards/yowkees/keyball39/config.h | 10 ----------
keyboards/yowkees/keyball39/info.json | 21 ++++++++++++++++++++-
2 files changed, 20 insertions(+), 11 deletions(-)
diff --git a/keyboards/yowkees/keyball39/config.h b/keyboards/yowkees/keyball39/config.h
index 00c426a0de9..9b7f69b1c21 100644
--- a/keyboards/yowkees/keyball39/config.h
+++ b/keyboards/yowkees/keyball39/config.h
@@ -19,18 +19,9 @@ along with this program. If not, see .
#pragma once
// Key matrix parameters
-#define MATRIX_ROWS (4 * 2) // split keyboard
-#define MATRIX_COLS 6
-#define MATRIX_ROW_PINS { F4, F5, F6, F7 }
-#define MATRIX_COL_PINS { D4, C6, D7, E6, B4, B5 }
#define MATRIX_MASKED
-#define DEBOUNCE 5
-#define DIODE_DIRECTION COL2ROW
// Split parameters
-#define SOFT_SERIAL_PIN D2
-#define SPLIT_HAND_MATRIX_GRID F6, B5
-#define SPLIT_USB_DETECT
#ifdef OLED_ENABLE
# define SPLIT_OLED_ENABLE
#endif
@@ -43,7 +34,6 @@ along with this program. If not, see .
#define SPLIT_TRANSACTION_IDS_KB KEYBALL_GET_INFO, KEYBALL_GET_MOTION, KEYBALL_SET_CPI
// RGB LED settings
-#define WS2812_DI_PIN D3
#ifdef RGBLIGHT_ENABLE
# define RGBLED_NUM 48
# define RGBLED_SPLIT { 24, 24 } // (24 + 22)
diff --git a/keyboards/yowkees/keyball39/info.json b/keyboards/yowkees/keyball39/info.json
index 63413db7016..e5279056088 100644
--- a/keyboards/yowkees/keyball39/info.json
+++ b/keyboards/yowkees/keyball39/info.json
@@ -7,6 +7,12 @@
"device_version": "1.0.0"
},
"development_board": "promicro",
+ "matrix_pins": {
+ "rows": ["F4", "F5", "F6", "F7"],
+ "cols": ["D4", "C6", "D7", "E6", "B4", "B5"]
+ },
+ "diode_direction": "COL2ROW",
+ "debounce": 5,
"features": {
"bootmagic": false,
"mousekey": false,
@@ -29,7 +35,17 @@
"lto": true
},
"split": {
- "enabled": true
+ "enabled": true,
+ "soft_serial_pin": "D2",
+ "transport": {
+ "protocol": "serial"
+ },
+ "usb_detect": {
+ "enabled": true
+ },
+ "handedness": {
+ "matrix_grid": ["F6", "B5"]
+ }
},
"rgblight": {
"driver": "ws2812"
@@ -37,6 +53,9 @@
"rgb_matrix": {
"driver": "ws2812"
},
+ "ws2812": {
+ "pin": "D3"
+ },
"layout_aliases": {
"LAYOUT": "LAYOUT_right_ball",
"LAYOUT_universal": "LAYOUT_no_ball"