We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f8b1eb commit 54d5d33Copy full SHA for 54d5d33
README.md
@@ -19,9 +19,9 @@ void setup() {
19
void loop() {
20
delay(30);
21
player1.update(); // read key state
22
- if (player1.button_A() && player1.button_D_down()
23
- || player1.button_Start()) { // has no deeper meaning ;)
24
- int xachse = player1.axis_x(); // can be negative oder positive
+ if (player1.A() && player1.D_down()
+ || player1.Start()) { // has no deeper meaning ;)
+ int xaxis = player1.axis_x(); // can be negative oder positive
25
// regarding to orientation of the analog stick
26
}
27
// …
0 commit comments