mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-25 18:35:17 +00:00
17 lines
293 B
C++
17 lines
293 B
C++
#include <BTstack.h>
|
|
#include <stdio.h>
|
|
#include <SPI.h>
|
|
|
|
UUID uuid("E2C56DB5-DFFB-48D2-B060-D0F5A71096E0");
|
|
|
|
void setup(void){
|
|
Serial.begin(9600);
|
|
BTstack.iBeaconConfigure(&uuid, 4711, 2);
|
|
BTstack.setup();
|
|
BTstack.startAdvertising();
|
|
}
|
|
|
|
void loop(void){
|
|
BTstack.loop();
|
|
}
|