mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-03 19:29:57 +00:00
c47401d729
* Remove setting fixed pin on double-click * Remove disablePin method
18 lines
252 B
C++
18 lines
252 B
C++
#pragma once
|
|
|
|
class NimbleBluetooth
|
|
{
|
|
public:
|
|
void setup();
|
|
void shutdown();
|
|
void clearBonds();
|
|
bool isActive();
|
|
|
|
private:
|
|
void setupService();
|
|
void startAdvertising();
|
|
};
|
|
|
|
void setBluetoothEnable(bool on);
|
|
void clearNVS();
|