mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-12 07:31:23 +00:00
![Ben Meadors](/assets/img/avatar_default.png)
* Esp32 bluetooth modes * Comment * Gutting bluetooth * Cleanup * Security * Testing * NRF bluetooth security * Reboot on saved lora or bluetooth settings * Cleanup * Fixes * Stub for platforms without screens * Fixed just-works in esp32 * Cleanup * Display device name in boot screen * Added waypoint module routing * chmod * Words * Protos * Backing out partition changes for testing * Revert "Backing out partition changes for testing" This reverts commit191ed6489c
. * Chmod PR artifacts * Trying setInitialState again * Revert "Trying setInitialState again" This reverts commit703eac7277
. * External notification module * Cleanup * Pin display formatting
19 lines
271 B
C++
19 lines
271 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();
|
|
void disablePin();
|