Skip to content

Commit

Permalink
Fixed comment
Browse files Browse the repository at this point in the history
The default pin was changed from 1234 to 0000 a while back
  • Loading branch information
Lauszus committed Mar 19, 2014
1 parent b3b476a commit 7569c19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/Bluetooth/SPP/SPP.ino
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ USB Usb;

BTD Btd(&Usb); // You have to create the Bluetooth Dongle instance like so
/* You can create the instance of the class in two ways */
SPP SerialBT(&Btd); // This will set the name to the defaults: "Arduino" and the pin to "1234"
//SPP SerialBT(&Btd, "Lauszus's Arduino","0000"); // You can also set the name and pin like so
SPP SerialBT(&Btd); // This will set the name to the defaults: "Arduino" and the pin to "0000"
//SPP SerialBT(&Btd, "Lauszus's Arduino", "1234"); // You can also set the name and pin like so

boolean firstMessage = true;

Expand Down

0 comments on commit 7569c19

Please sign in to comment.