Files
firmware/src/nimble/NimbleBluetooth.h

18 lines
252 B
C
Raw Normal View History

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