Original library sources.
This commit is contained in:
23
examples/send/send.ino
Normal file
23
examples/send/send.ino
Normal file
@ -0,0 +1,23 @@
|
||||
#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(".");
|
||||
}
|
||||
|
Reference in New Issue
Block a user