Files
firmware/src/platform/esp32/BleOta.h

18 lines
298 B
C
Raw Normal View History

2022-10-08 11:10:29 +02:00
#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