server_tflite.h 536 B

12345678910111213141516171819202122232425262728
  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. #ifdef ENABLE_MQTT
  12. std::string GetMQTTMainTopic();
  13. #endif //ENABLE_MQTT
  14. int getCountFlowRounds();
  15. esp_err_t GetJPG(std::string _filename, httpd_req_t *req);
  16. esp_err_t GetRawJPG(httpd_req_t *req);
  17. extern ClassFlowControll tfliteflow;