Files
firmware/src/esp32/MeshBluetoothService.h

15 lines
340 B
C
Raw Normal View History

2020-02-01 16:14:34 -08:00
#pragma once
#include <Arduino.h>
#include <BLEServer.h>
#include <BLEService.h>
2020-02-01 16:14:34 -08:00
BLEService *createMeshBluetoothService(BLEServer *server);
void destroyMeshBluetoothService();
2020-02-01 16:14:34 -08:00
/**
* Tell any bluetooth clients that the number of rx packets has changed
*/
void bluetoothNotifyFromNum(uint32_t newValue);
void stopMeshBluetoothService();