mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
Don't print the right joystick if it's a Navigation controller
This commit is contained in:
parent
6598bca58a
commit
aafb1d6491
1 changed files with 6 additions and 4 deletions
|
@ -31,10 +31,12 @@ void loop() {
|
||||||
Serial.print(PS3.getAnalogHat(LeftHatX));
|
Serial.print(PS3.getAnalogHat(LeftHatX));
|
||||||
Serial.print(F("\tLeftHatY: "));
|
Serial.print(F("\tLeftHatY: "));
|
||||||
Serial.print(PS3.getAnalogHat(LeftHatY));
|
Serial.print(PS3.getAnalogHat(LeftHatY));
|
||||||
Serial.print(F("\tRightHatX: "));
|
if(!PS3.PS3NavigationConnected) {
|
||||||
Serial.print(PS3.getAnalogHat(RightHatX));
|
Serial.print(F("\tRightHatX: "));
|
||||||
Serial.print(F("\tRightHatY: "));
|
Serial.print(PS3.getAnalogHat(RightHatX));
|
||||||
Serial.print(PS3.getAnalogHat(RightHatY));
|
Serial.print(F("\tRightHatY: "));
|
||||||
|
Serial.print(PS3.getAnalogHat(RightHatY));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//Analog button values can be read from almost all buttons
|
//Analog button values can be read from almost all buttons
|
||||||
|
|
Loading…
Reference in a new issue