Corrected pins

This commit is contained in:
Ulysse Cura 2026-02-20 17:28:45 +01:00
parent 8b98d85a24
commit 269d2a1e96
1 changed files with 4 additions and 4 deletions

View File

@ -12,16 +12,16 @@ typedef enum inputs_pin_t {
BUTTON_WHITE_PIN = 6,
BUTTON_GREEN_PIN = 2,
BUTTON_L_PIN = 9,
BUTTON_R_PIN = 13,
BUTTON_L_PIN = 13,
BUTTON_R_PIN = 9,
} inputs_pin_t;
#define JOYSTICK_X_AXIS_ADC_INPUT 0
#define JOYSTICK_Y_AXIS_ADC_INPUT 1
typedef struct inputs_t {
int8_t joystick_x;
int8_t joystick_y;
int16_t joystick_x;
int16_t joystick_y;
struct {
bool button_black : 1;