SmartLightBLE/lib/Bluetooth/Bluetooth.h
Rémi Heredero fec6f19309 master
2021-04-16 21:15:54 +02:00

13 lines
193 B
C++

#ifndef BLUETOOTH_H_INCLUDED
#define BLUETOOTH_H_INCLUDED
struct BeaconBLE {
String adresse;
int qualite;
};
void setup_ble();
std::vector<BeaconBLE> loop_ble();
#endif