mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-24 17:32:18 +00:00
14 lines
307 B
C
14 lines
307 B
C
#pragma once
|
|
|
|
#include <BLEService.h>
|
|
#include <BLEServer.h>
|
|
#include <Arduino.h>
|
|
|
|
BLEService *createMeshBluetoothService(BLEServer* server);
|
|
void destroyMeshBluetoothService();
|
|
|
|
/**
|
|
* Tell any bluetooth clients that the number of rx packets has changed
|
|
*/
|
|
void bluetoothNotifyFromNum(uint32_t newValue);
|