LoRa_APRS_iGate/include/ota_utils.h

17 lines
280 B
C
Raw Normal View History

2024-02-24 14:09:05 +01:00
#ifndef OTA_UTILS_H_
#define OTA_UTILS_H_
#include <ESPAsyncWebServer.h>
2024-02-25 14:53:16 +01:00
#include <Arduino.h>
2024-02-24 14:09:05 +01:00
namespace OTA_Utils {
void setup(AsyncWebServer *server);
void onOTAStart();
void onOTAProgress(size_t current, size_t final);
void onOTAEnd(bool success);
}
#endif