Reserve 200 bytes for string and print status string

This commit is contained in:
Kristian Sloth Lauszus 2013-04-03 20:36:23 +02:00
parent ed04516c18
commit 7ceeb2b2f5

View file

@ -21,7 +21,7 @@ PS3BT PS3(&Btd); // This will just create the instance
//PS3BT PS3(&Btd,0x00,0x15,0x83,0x3D,0x0A,0x57); // This will also store the bluetooth address - this can be obtained from the dongle when running the sketch //PS3BT PS3(&Btd,0x00,0x15,0x83,0x3D,0x0A,0x57); // This will also store the bluetooth address - this can be obtained from the dongle when running the sketch
boolean firstMessage = true; boolean firstMessage = true;
String output; // We will store the data in these string so we doesn't overflow the dongle String output = ""; // We will store the data in this string so we doesn't overflow the dongle
void setup() { void setup() {
Serial.begin(115200); // This wil lprint the debugging from the libraries Serial.begin(115200); // This wil lprint the debugging from the libraries
@ -30,6 +30,7 @@ void setup() {
while(1); //halt while(1); //halt
} }
Serial.print(F("\r\nBluetooth Library Started")); Serial.print(F("\r\nBluetooth Library Started"));
output.reserve(200); // Reserve 200 bytes for the output string
} }
void loop() { void loop() {
Usb.Task(); Usb.Task();
@ -130,8 +131,10 @@ void loop() {
if(PS3.getButtonClick(R3)) if(PS3.getButtonClick(R3))
output += " - R3"; output += " - R3";
if(PS3.getButtonClick(SELECT)) if(PS3.getButtonClick(SELECT)) {
output += " - Select"; output += " - Select - ";
output += PS3.getStatusString();
}
if(PS3.getButtonClick(START)) if(PS3.getButtonClick(START))
output += " - Start"; output += " - Start";
@ -142,5 +145,6 @@ void loop() {
SerialBT.println(string); SerialBT.println(string);
} }
} }
delay(10);
} }
} }