Arduino + Joystick

Arduino Code:

int xPin = A1;
int yPin = A0;
int buttonPin = 2;

int xPos = 0;
int yPos = 0;
int button = 0;

void setup() {
Serial.begin(9600);

pinMode(xPin, INPUT);
pinMode(yPin, INPUT);

pinMode(buttonPin, INPUT_PULLUP);

}

void loop() {
xPos = analogRead(xPin);
yPos = analogRead(yPin);
button = digitalRead(buttonPin);

Serial.print(“X: “);
Serial.print(xPos);
Serial.print(” | Y: “);
Serial.print(yPos);
Serial.print(” | Button: “);
Serial.println(button);

delay(50);

}

//end of code

joystick

ADS

Arduino Mega Compatible
en Amazon
por menos de 15€

Arduino Mega Compatible
en Amazon
por menos de 14€

Arduino Mega Kit
en Amazon
por menos de 30€

Arduino Mega Kit
en Amazon
por menos de 60€

Leave a comment