mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
Fixed lowercase
This commit is contained in:
parent
f16e348199
commit
f6aef14619
1 changed files with 4 additions and 4 deletions
|
@ -58,7 +58,7 @@ void loop()
|
|||
Serial.println("");
|
||||
}
|
||||
|
||||
if(BT.ButtonPressed)
|
||||
if(BT.buttonPressed)
|
||||
{
|
||||
Serial.print(F("PS3 Controller"));
|
||||
|
||||
|
@ -96,7 +96,7 @@ void loop()
|
|||
if(BT.getButton(L1))
|
||||
Serial.print(F(" - L1"));
|
||||
//if(BT.getButton(L2))
|
||||
//Serial.print(F(" - L2"));
|
||||
//Serial.print(F(" - L2"));
|
||||
if(BT.getButton(L3))
|
||||
Serial.print(F(" - L3"));
|
||||
if(BT.getButton(R1))
|
||||
|
@ -121,7 +121,7 @@ void loop()
|
|||
if(BT.getAnalogButton(T_MOVE_ANALOG) > 0) {
|
||||
Serial.print(F("T: "));
|
||||
Serial.println(BT.getAnalogButton(T_MOVE_ANALOG), DEC);
|
||||
} if(BT.ButtonPressed) {
|
||||
} if(BT.buttonPressed) {
|
||||
Serial.print(F("PS3 Move Controller"));
|
||||
|
||||
if(BT.getButton(PS_MOVE)) {
|
||||
|
@ -176,4 +176,4 @@ void loop()
|
|||
Serial.println(templow);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue