mirror of
https://github.com/EyeTrackVR/OpenIris.git
synced 2025-11-04 15:39:42 +08:00
14 lines
272 B
C++
14 lines
272 B
C++
#include "pinout.h"
|
|
#include "esp_camera.h"
|
|
#include <Arduino.h>
|
|
|
|
|
|
namespace CameraHandler{
|
|
|
|
extern sensor_t* camera_sensor;
|
|
|
|
int setupCamera();
|
|
int setCameraResolution(framesize_t framesize);
|
|
int setVFlip(int direction);
|
|
int setHFlip(int direction);
|
|
} |