firmware/src/esp32/BluetoothSoftwareUpdate.h
2020-05-14 14:22:11 -07:00

11 lines
282 B
C++

#pragma once
#include <Arduino.h>
#include <BLEDevice.h>
#include <BLEServer.h>
#include <BLEUtils.h>
BLEService *createUpdateService(BLEServer *server, std::string hwVendor, std::string swVersion, std::string hwVersion);
void destroyUpdateService();
void bluetoothRebootCheck();