mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-06 19:46:54 +03:00
25 lines
469 B
C++
25 lines
469 B
C++
#include <esp_log.h>
|
|
#include <string>
|
|
|
|
#include <esp_http_server.h>
|
|
#include "CImageBasis.h"
|
|
#include "ClassFlowControll.h"
|
|
|
|
//#include "ClassControllCamera.h"
|
|
|
|
void register_server_tflite_uri(httpd_handle_t server);
|
|
|
|
void KillTFliteTasks();
|
|
|
|
void TFliteDoAutoStart();
|
|
|
|
bool isSetupModusActive();
|
|
|
|
std::string GetMQTTMainTopic();
|
|
|
|
esp_err_t GetJPG(std::string _filename, httpd_req_t *req);
|
|
|
|
esp_err_t GetRawJPG(httpd_req_t *req);
|
|
|
|
extern ClassFlowControll tfliteflow;
|