Changing adc inputs

This commit is contained in:
Ulysse Cura 2025-05-27 22:41:30 +02:00
parent 0d80781129
commit 5512d868ed
1 changed files with 4 additions and 4 deletions

View File

@ -22,11 +22,11 @@ typedef struct button_def_t {
extern const button_def_t BUTTONS_DEFS[];
#define JOYSTICK_X_AXIS_PIN 27
#define JOYSTICK_Y_AXIS_PIN 28
#define JOYSTICK_X_AXIS_PIN 26
#define JOYSTICK_Y_AXIS_PIN 27
#define JOYSTICK_X_AXIS_ADC_INPUT 1
#define JOYSTICK_Y_AXIS_ADC_INPUT 2
#define JOYSTICK_X_AXIS_ADC_INPUT 0
#define JOYSTICK_Y_AXIS_ADC_INPUT 1
typedef struct inputs_buffer_t {
int8_t x_axis_speed;