firmware/src/nimble/NimbleBluetooth.h

18 lines
252 B
C
Raw Normal View History

2022-02-14 17:52:00 +00:00
#pragma once
class NimbleBluetooth
2022-02-14 17:52:00 +00:00
{
public:
void setup();
void shutdown();
void clearBonds();
bool isActive();
private:
void setupService();
void startAdvertising();
2022-02-14 17:52:00 +00:00
};
void setBluetoothEnable(bool on);
void clearNVS();