firmware/src/platform/esp32/ESP32Bluetooth.h

23 lines
310 B
C
Raw Normal View History

2022-02-14 17:52:00 +00:00
#ifdef USE_NEW_ESP32_BLUETOOTH
#pragma once
class ESP32Bluetooth
{
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();
void disablePin();
#endif