server_tflite.h 469 B

123456789101112131415161718192021222324
  1. #include <esp_log.h>
  2. #include <string>
  3. #include <esp_http_server.h>
  4. #include "CImageBasis.h"
  5. #include "ClassFlowControll.h"
  6. //#include "ClassControllCamera.h"
  7. void register_server_tflite_uri(httpd_handle_t server);
  8. void KillTFliteTasks();
  9. void TFliteDoAutoStart();
  10. bool isSetupModusActive();
  11. std::string GetMQTTMainTopic();
  12. esp_err_t GetJPG(std::string _filename, httpd_req_t *req);
  13. esp_err_t GetRawJPG(httpd_req_t *req);
  14. extern ClassFlowControll tfliteflow;