Skip to content

Commit 7569c19

Browse files
committed
Fixed comment
The default pin was changed from 1234 to 0000 a while back
1 parent b3b476a commit 7569c19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/Bluetooth/SPP/SPP.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ USB Usb;
1616

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

2222
boolean firstMessage = true;
2323

0 commit comments

Comments
 (0)