mirror of
https://github.com/airgradienthq/arduino.git
synced 2025-07-26 06:57:17 +02:00
13 lines
141 B
C++
13 lines
141 B
C++
#ifndef _OTA_HANDLER_H_
|
|
#define _OTA_HANDLER_H_
|
|
|
|
|
|
class OtaHandler {
|
|
public:
|
|
void updateFirmwareIfOutdated() {
|
|
|
|
}
|
|
};
|
|
|
|
#endif
|