From 7569c19a763343f1f54574a64714d1c58815f73e Mon Sep 17 00:00:00 2001 From: Kristian Lauszus Date: Wed, 19 Mar 2014 18:06:44 +0100 Subject: [PATCH] Fixed comment The default pin was changed from 1234 to 0000 a while back --- examples/Bluetooth/SPP/SPP.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Bluetooth/SPP/SPP.ino b/examples/Bluetooth/SPP/SPP.ino index 6a326a3d..d8276b7b 100644 --- a/examples/Bluetooth/SPP/SPP.ino +++ b/examples/Bluetooth/SPP/SPP.ino @@ -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;