BTLE/examples/send/send.ino

24 lines
310 B
Arduino
Raw Normal View History

2018-07-20 20:21:55 +02:00
#include <SPI.h>
#include <RF24.h>
#include <BTLE.h>
RF24 radio(9,10);
BTLE btle(&radio);
void setup() {
Serial.begin(9600);
while (!Serial) { }
Serial.println("BTLE advertisement sender");
btle.begin("foobar");
}
void loop() {
btle.advertise(0,0);
btle.hopChannel();
Serial.print(".");
}