Move encoder config to data driven (#19923)

Co-authored-by: Nick Brassel <nick@tzarc.org>
This commit is contained in:
Ryan 2023-02-26 09:45:12 +11:00 committed by GitHub
parent 314f6c1ddb
commit 7e0299117b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
972 changed files with 2898 additions and 2569 deletions

View file

@ -17,10 +17,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#pragma once
#define ENCODERS_PAD_A { B5 }
#define ENCODERS_PAD_B { B6 }
/* COL2ROW, ROW2COL */
#define DIODE_DIRECTION COL2ROW

View file

@ -7,6 +7,11 @@
"vid": "0x3265",
"pid": "0x0008"
},
"encoder": {
"rotary": [
{"pin_a": "B5", "pin_b": "B6"}
]
},
"processor": "atmega32u4",
"bootloader": "caterina",
"layouts": {

View file

@ -44,12 +44,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
34, 35, 36, 37, 38, 39, 40 }
#endif
#define ENCODERS_PAD_A { B5 }
#define ENCODERS_PAD_B { B6 }
#define ENCODERS_PAD_A_RIGHT { B6 }
#define ENCODERS_PAD_B_RIGHT { B5 }
/* COL2ROW, ROW2COL */
#define DIODE_DIRECTION COL2ROW

View file

@ -8,8 +8,20 @@
"pid": "0x0008",
"device_version": "0.0.1"
},
"encoder": {
"rotary": [
{"pin_a": "B5", "pin_b": "B6"}
]
},
"split": {
"soft_serial_pin": "D2"
"soft_serial_pin": "D2",
"encoder": {
"right": {
"rotary": [
{"pin_a": "B6", "pin_b": "B5"}
]
}
}
},
"processor": "atmega32u4",
"bootloader": "caterina",

View file

@ -85,11 +85,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#endif
#ifdef ENCODER_ENABLE
#define ENCODERS_PAD_A { B4 }
#define ENCODERS_PAD_B { B5 }
#endif
/* disable action features */
//#define NO_ACTION_LAYER
//#define NO_ACTION_TAPPING

View file

@ -8,6 +8,11 @@
"pid": "0x0006",
"device_version": "0.0.1"
},
"encoder": {
"rotary": [
{"pin_a": "B4", "pin_b": "B5"}
]
},
"processor": "atmega32u4",
"bootloader": "caterina",
"layouts": {

View file

@ -17,9 +17,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#pragma once
#define ENCODERS_PAD_A { D1, F5 }
#define ENCODERS_PAD_B { D0, F6 }
#ifdef RGBLIGHT_ENABLE
# define RGB_DI_PIN D3
# define RGBLED_NUM 13

View file

@ -8,6 +8,12 @@
"pid": "0x0002",
"device_version": "0.0.1"
},
"encoder": {
"rotary": [
{"pin_a": "D1", "pin_b": "D0"},
{"pin_a": "F5", "pin_b": "F6"}
]
},
"processor": "atmega32u4",
"bootloader": "caterina",
"matrix_pins": {