mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2026-01-27 12:50:39 +03:00
12 lines
190 B
C
12 lines
190 B
C
#pragma once
|
|
|
|
#ifndef SERVER_CAMERA_H
|
|
#define SERVER_CAMERA_H
|
|
|
|
#include <esp_log.h>
|
|
#include <esp_http_server.h>
|
|
|
|
void camera_register_uri(httpd_handle_t server);
|
|
|
|
#endif // SERVER_CAMERA_H
|