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