forked from btclock/btclock_v3
12 lines
No EOL
306 B
C++
12 lines
No EOL
306 B
C++
#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();
|
|
void onOTAError(ota_error_t error);
|
|
void onOTAComplete(); |