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
972 changed files with 2898 additions and 2569 deletions

View File

@@ -18,6 +18,5 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#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 ENCODERS_PAD_A { B0, D0 }
#define ENCODERS_PAD_B { B1, B2}
#define RGB_DI_PIN B3

View File

@@ -1,4 +1,10 @@
{
"processor": "atmega32a",
"bootloader": "usbasploader"
"bootloader": "usbasploader",
"encoder": {
"rotary": [
{"pin_a": "B0", "pin_b": "B1"},
{"pin_a": "D0", "pin_b": "B2"}
]
}
}