USB_Host_Shield_2.0/examples/Bluetooth/SPP/SPP.ino

43 lines
1.3 KiB
Arduino
Raw Normal View History

2012-07-24 22:23:59 +02:00
/*
2012-08-08 19:59:43 +02:00
Example sketch for the RFCOMM/SPP Bluetooth library - developed by Kristian Lauszus
2012-07-24 22:23:59 +02:00
For more information visit my blog: http://blog.tkjelectronics.dk/ or
send me an e-mail: kristianl@tkjelectronics.com
*/
2012-08-08 19:22:47 +02:00
#include <SPP.h>
2013-08-13 21:31:52 +02:00
#include <usbhub.h>
2012-07-24 22:23:59 +02:00
USB Usb;
2013-08-13 21:31:52 +02:00
USBHub Hub1(&Usb); // Some dongles have a hub inside
2012-08-08 19:22:47 +02:00
BTD Btd(&Usb); // You have to create the Bluetooth Dongle instance like so
2012-07-24 22:23:59 +02:00
/* You can create the instance of the class in two ways */
2012-08-08 19:22:47 +02:00
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
2012-07-24 22:23:59 +02:00
boolean firstMessage = true;
void setup() {
Serial.begin(115200);
if (Usb.Init() == -1) {
Serial.print(F("\r\nOSC did not start"));
while(1); //halt
}
2012-08-08 21:28:25 +02:00
Serial.print(F("\r\nSPP Bluetooth Library Started"));
2012-07-24 22:23:59 +02:00
}
void loop() {
2013-05-07 15:50:38 +02:00
Usb.Task(); // The SPP data is actually not send until this is called, one could call SerialBT.send() directly as well
2012-07-24 22:23:59 +02:00
if(SerialBT.connected) {
if(firstMessage) {
firstMessage = false;
SerialBT.println(F("Hello from Arduino")); // Send welcome message
2012-07-24 22:23:59 +02:00
}
if(Serial.available())
SerialBT.write(Serial.read());
2012-07-24 22:23:59 +02:00
if(SerialBT.available())
Serial.write(SerialBT.read());
}
else
firstMessage = true;
}