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

45 lines
1.4 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
2013-11-15 19:05:25 +01:00
For more information visit my blog: http://blog.tkjelectronics.dk/ or
2012-07-24 22:23:59 +02:00
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-11-24 15:17:19 +01: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);
while (!Serial); // Wait for serial port to connect - used on Leonardo, Teensy and other boards with built-in USB CDC serial connection
2012-07-24 22:23:59 +02:00
if (Usb.Init() == -1) {
Serial.print(F("\r\nOSC did not start"));
2013-11-15 19:05:25 +01:00
while (1); //halt
2012-07-24 22:23:59 +02:00
}
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
2013-11-15 19:05:25 +01:00
if (SerialBT.connected) {
if (firstMessage) {
2012-07-24 22:23:59 +02:00
firstMessage = false;
SerialBT.println(F("Hello from Arduino")); // Send welcome message
2012-07-24 22:23:59 +02:00
}
2013-11-15 19:05:25 +01:00
if (Serial.available())
SerialBT.write(Serial.read());
2013-11-15 19:05:25 +01:00
if (SerialBT.available())
2012-07-24 22:23:59 +02:00
Serial.write(SerialBT.read());
2013-11-15 19:05:25 +01:00
}
else
2012-07-24 22:23:59 +02:00
firstMessage = true;
}