summaryrefslogtreecommitdiff
path: root/keyboards/keebio/sinc/rev2
diff options
context:
space:
mode:
authorSeth Barberee <seth.barberee@gmail.com>2022-09-29 19:23:02 -0500
committerGitHub <noreply@github.com>2022-09-29 17:23:02 -0700
commit26c3e877c7e836d45cb84ec5265fab62e4c90028 (patch)
tree1a38cc0c43fd28e2ad3a088556e63c3a403288b3 /keyboards/keebio/sinc/rev2
parent1dd15a8f22d3f497cf0e6226f8bb8e228d806628 (diff)
[Keyboard] Convert most of sinc to data driven info.json (#18481)
Diffstat (limited to 'keyboards/keebio/sinc/rev2')
-rw-r--r--keyboards/keebio/sinc/rev2/config.h27
-rw-r--r--keyboards/keebio/sinc/rev2/info.json50
-rw-r--r--keyboards/keebio/sinc/rev2/rev2.c4
-rw-r--r--keyboards/keebio/sinc/rev2/rules.mk4
4 files changed, 53 insertions, 32 deletions
diff --git a/keyboards/keebio/sinc/rev2/config.h b/keyboards/keebio/sinc/rev2/config.h
index 800400e905..92d2fda644 100644
--- a/keyboards/keebio/sinc/rev2/config.h
+++ b/keyboards/keebio/sinc/rev2/config.h
@@ -16,31 +16,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#pragma once
-/* key matrix size */
-// Rows are doubled-up
-#define MATRIX_ROWS 12
-#define MATRIX_COLS 9
-
-#define DIODE_DIRECTION COL2ROW
// wiring of each half
-#define MATRIX_ROW_PINS { B1, B2, C7, B4, D7, B0 }
-#define MATRIX_COL_PINS { F4, F1, F0, B7, B3, D2, D3, D5, D4 }
-#define MATRIX_ROW_PINS_RIGHT { B3, B2, B6, B4, D7, B0 }
-#define MATRIX_COL_PINS_RIGHT { F1, F0, F4, F5, F6, D5, C7, D3, B7 }
#define SPLIT_HAND_PIN F7
-#define ENCODERS_PAD_A { F5 }
-#define ENCODERS_PAD_B { F6 }
-#define ENCODERS_PAD_A_RIGHT { D6 }
-#define ENCODERS_PAD_B_RIGHT { D4 }
-
-/* Set 0 if debouncing isn't needed */
-#define DEBOUNCE 5
-
-#define BACKLIGHT_PIN B5
-#define CAPS_LOCK_LED_PIN B6
-
-/* serial.c configuration for split keyboard */
-#define SOFT_SERIAL_PIN D0
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
#define LOCKING_SUPPORT_ENABLE
@@ -48,10 +25,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define LOCKING_RESYNC_ENABLE
/* ws2812 RGB LED */
-#define RGB_DI_PIN E6
-#define RGBLIGHT_ANIMATIONS
-#define RGBLED_NUM 16 // Number of LEDs
-#define RGBLED_SPLIT { 8, 8 }
#define RGBLIGHT_LED_MAP { 1, 2, 3, 12, 13, 14, 15, 0, 7, 6, 5, 4, 11, 10, 9, 8 }
#define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_MODE_RAINBOW_SWIRL + 2)
diff --git a/keyboards/keebio/sinc/rev2/info.json b/keyboards/keebio/sinc/rev2/info.json
index 378b02d2e7..c3dd1d80ed 100644
--- a/keyboards/keebio/sinc/rev2/info.json
+++ b/keyboards/keebio/sinc/rev2/info.json
@@ -3,5 +3,55 @@
"usb": {
"pid": "0x2267",
"device_version": "2.0.0"
+ },
+ "debounce": 5,
+ "diode_direction": "COL2ROW",
+ "features": {
+ "rgblight": true,
+ "backlight": true,
+ },
+ "indicators": {
+ "caps_lock": "B6"
+ },
+ "split": {
+ "enabled": true,
+ "soft_serial_pin": "D0",
+ "transport": {
+ "protocol": "serial"
+ },
+ "encoder": {
+ "right": {
+ "rotary": [
+ {"pin_a": "D6", "pin_b": "D4" },
+ ],
+ },
+ },
+ "matrix_pins": {
+ "right":{
+ "cols": ["F1", "F0", "F4", "F5", "F6", "D5", "C7", "D3", "B7"],
+ "rows": ["B3", "B2", "B6", "B4", "D7", "B0"],
+ },
+ },
+ },
+ "matrix_pins": {
+ "cols": ["F4", "F1", "F0", "B7", "B3", "D2", "D3", "D5", "D4"],
+ "rows": ["B1", "B2", "C7", "B4", "D7", "B0"],
+ },
+ "encoder": {
+ "enabled": true,
+ "rotary": [
+ {"pin_a": "F5", "pin_b": "F6" },
+ ],
+ },
+ "backlight":{
+ "pin": "B5",
+ },
+ "rgblight": {
+ "pin": "E6",
+ "led_count" : 16,
+ "split_count": [8, 8],
+ "animations": {
+ "all": true,
+ }
}
}
diff --git a/keyboards/keebio/sinc/rev2/rev2.c b/keyboards/keebio/sinc/rev2/rev2.c
index 47bb1e9e68..a774b76ca0 100644
--- a/keyboards/keebio/sinc/rev2/rev2.c
+++ b/keyboards/keebio/sinc/rev2/rev2.c
@@ -18,14 +18,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "split_util.h"
void matrix_init_kb(void) {
- setPinOutput(CAPS_LOCK_LED_PIN);
+ setPinOutput(LED_CAPS_LOCK_PIN);
matrix_init_user();
}
bool led_update_kb(led_t led_state) {
// Only update if left half
if (isLeftHand && led_update_user(led_state)) {
- writePin(CAPS_LOCK_LED_PIN, !led_state.caps_lock);
+ writePin(LED_CAPS_LOCK_PIN, !led_state.caps_lock);
}
return true;
}
diff --git a/keyboards/keebio/sinc/rev2/rules.mk b/keyboards/keebio/sinc/rev2/rules.mk
index 32e7881599..6e7633bfe0 100644
--- a/keyboards/keebio/sinc/rev2/rules.mk
+++ b/keyboards/keebio/sinc/rev2/rules.mk
@@ -1,3 +1 @@
-BACKLIGHT_ENABLE = yes
-RGBLIGHT_ENABLE = yes
-ENCODER_ENABLE = yes
+# This file intentionally left blank