mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-19 17:22:59 +00:00
18 lines
298 B
C
18 lines
298 B
C
|
|
#ifndef BLEOTA_H
|
||
|
|
#define BLEOTA_H
|
||
|
|
|
||
|
|
#include <functional>
|
||
|
|
|
||
|
|
class BleOta {
|
||
|
|
public:
|
||
|
|
explicit BleOta() {};
|
||
|
|
|
||
|
|
static String getOtaAppVersion();
|
||
|
|
static bool switchToOtaApp();
|
||
|
|
|
||
|
|
private:
|
||
|
|
String mUserAgent;
|
||
|
|
static const esp_partition_t *findEspOtaAppPartition();
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif //BLEOTA_H
|