mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-08 20:46:52 +03:00
* fix special case where number is named "default" (keep all topics in top level instead of in a sub-group) * re-implemented SNTP usage, added way to disable NTP client, added timezone table * minor fixes Co-authored-by: CaCO3 <caco@ruinelli.ch>
19 lines
289 B
C++
19 lines
289 B
C++
#pragma once
|
|
|
|
#ifndef SERVEROTA_H
|
|
#define SERVEROTA_H
|
|
|
|
#include <esp_log.h>
|
|
|
|
#include <esp_http_server.h>
|
|
|
|
#include <string>
|
|
|
|
|
|
void register_server_ota_sdcard_uri(httpd_handle_t server);
|
|
void CheckOTAUpdate();
|
|
void doReboot();
|
|
void hard_restart();
|
|
void CheckUpdate();
|
|
|
|
#endif //SERVEROTA_H
|