diff options
author | Ryan <fauxpark@gmail.com> | 2020-03-24 14:32:23 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-24 03:32:23 +0000 |
commit | 297aad6ebd8577e826ea738cde25207a61337dc0 (patch) | |
tree | fe9250a52c968dbf685758e507ef6a92546d89a2 /keyboards/handwired/onekey/proton_c/config.h | |
parent | 8f69983c58e7c8025d55ccdb31bcf570158f5433 (diff) |
Set backlight and RGB pins for AVR onekeys (#8533)
* Set backlight and RGB pins for AVR onekeys
* Set pin for ADC as well
* Define ADC_PIN for F4 blackpills
* Use A0 for F4 ADCs
* Set ADC pins for F0 and F1
Diffstat (limited to 'keyboards/handwired/onekey/proton_c/config.h')
-rw-r--r-- | keyboards/handwired/onekey/proton_c/config.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/keyboards/handwired/onekey/proton_c/config.h b/keyboards/handwired/onekey/proton_c/config.h index fe34f94add..3ba4ba6499 100644 --- a/keyboards/handwired/onekey/proton_c/config.h +++ b/keyboards/handwired/onekey/proton_c/config.h @@ -18,8 +18,8 @@ #include "config_common.h" -#define MATRIX_COL_PINS { A3 } -#define MATRIX_ROW_PINS { A2 } +#define MATRIX_COL_PINS { A2 } +#define MATRIX_ROW_PINS { A1 } #define UNUSED_PINS #define BACKLIGHT_PIN B8 @@ -27,4 +27,6 @@ #define BACKLIGHT_PWM_CHANNEL 3 #define BACKLIGHT_PAL_MODE 2 -#define RGB_DI_PIN A1 +#define RGB_DI_PIN A0 + +#define ADC_PIN A0 |