From 54d5d3391c378c60e86873b543ed73d64717ecf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kai=20L=C3=BCke?= Date: Mon, 22 Jun 2020 21:53:15 +0200 Subject: [PATCH] Correct README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6b050f8..834e5d6 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,9 @@ void setup() { void loop() { delay(30); player1.update(); // read key state - if (player1.button_A() && player1.button_D_down() - || player1.button_Start()) { // has no deeper meaning ;) - 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 // regarding to orientation of the analog stick } // …