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

50 lines
1.6 KiB
Arduino
Raw Normal View History

2012-07-24 22:23:59 +02:00
/*
Example sketch for the RFCOMM/SPP Server 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
*/
#include <SPPServer.h>
2013-08-13 21:31:52 +02:00
#include <usbhub.h>
// Satisfy IDE, which only needs to see the include statment in the ino.
#ifdef dobogusinclude
#include <spi4teensy3.h>
#endif
2013-08-13 21:31:52 +02:00
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 */
SPPServer SerialBT(&Btd); // This will set the name to the defaults: "Arduino" and the pin to "0000"
//SPPServer SerialBT(&Btd, "Lauszus's Arduino", "1234"); // 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"));
while (1); // Halt
2012-07-24 22:23:59 +02:00
}
Serial.print(F("\r\nSPP Server Started"));
2012-07-24 22:23:59 +02:00
}
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 SPP server")); // Send welcome message
2012-07-24 22:23:59 +02:00
}
while (Serial.available())
SerialBT.write(Serial.read());
while (SerialBT.available())
2012-07-24 22:23:59 +02:00
Serial.write(SerialBT.read());
} else
2012-07-24 22:23:59 +02:00
firstMessage = true;
}