btclock_v3/src/lib/ota.hpp

12 lines
306 B
C++
Raw Normal View History

#include <Arduino.h>
#include <ArduinoOTA.h>
#include "config.hpp"
#include "shared.hpp"
void setupOTA();
void onOTAStart();
void handleOTATask(void *parameter);
void onOTAProgress(unsigned int progress, unsigned int total);
void downloadUpdate();
2023-11-13 00:02:01 +00:00
void onOTAError(ota_error_t error);
void onOTAComplete();