搖桿Joystick

利用搖桿模組讀取 xy座標的值,為了達到x座標由左至右愈大,y座標由下而上愈大,經過實際測試後發現,模組的VRYx座標的值、VRYy座標的值,才能達到我的要求。




搖桿  
Arduino
說明
GND
GND

5V
5V

VRY
A0
x-Axis
VRX
A1
y-Axis

/* Joystick
 * 一個簡單的程式,讀取搖桿的xy座標的值
 */
void setup() {
  // put your setup code here, to run once:
  Serial.begin(9600) ;
}

void loop() {
  // put your main code here, to run repeatedly:
  int xAxis = analogRead(A0) ; // 讀取 pin A0
  int yAxis =analogRead(A1) ;  // 讀取 pin A1
  String Str1 = " x-axis : "+String(xAxis) + ", y-axis : " + String(yAxis) ;
  Serial.println(Str1) ;
  delay(200) ;
}