From 01c909c2cca96494d8b7c809cd1e483c5c85131c Mon Sep 17 00:00:00 2001 From: Kristian Lauszus Date: Wed, 19 Sep 2012 23:20:49 +0200 Subject: [PATCH] Fixed comment --- examples/Bluetooth/PS3SPP/PS3SPP.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Bluetooth/PS3SPP/PS3SPP.ino b/examples/Bluetooth/PS3SPP/PS3SPP.ino index 2f567150..8e12364a 100644 --- a/examples/Bluetooth/PS3SPP/PS3SPP.ino +++ b/examples/Bluetooth/PS3SPP/PS3SPP.ino @@ -49,7 +49,7 @@ void loop() { firstMessage = true; if(PS3.PS3Connected || PS3.PS3NavigationConnected) { - output = ""; // Reset analog output string + output = ""; // Reset output string if(PS3.getAnalogHat(LeftHatX) > 137 || PS3.getAnalogHat(LeftHatX) < 117 || PS3.getAnalogHat(LeftHatY) > 137 || PS3.getAnalogHat(LeftHatY) < 117 || PS3.getAnalogHat(RightHatX) > 137 || PS3.getAnalogHat(RightHatX) < 117 || PS3.getAnalogHat(RightHatY) > 137 || PS3.getAnalogHat(RightHatY) < 117) { output += "LeftHatX: "; output += PS3.getAnalogHat(LeftHatX); @@ -73,7 +73,7 @@ void loop() { Serial.println(output); if(SerialBT.connected) SerialBT.println(output); - output = ""; + output = ""; // Reset output string } if(PS3.getButtonClick(PS)) { output += " - PS";