mirror of
https://github.com/HERDAC/SmartLightBLE.git
synced 2024-11-24 18:43:28 +00:00
13 lines
193 B
C++
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
|