We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24031d0 commit ced4000Copy full SHA for ced4000
libraries/Camera/examples/CameraCaptureRawBytes/CameraCaptureRawBytes.ino
@@ -11,9 +11,11 @@
11
Camera cam(himax);
12
#define IMAGE_MODE CAMERA_GRAYSCALE
13
#elif defined(ARDUINO_GIGA)
14
- #include "ov7670.h"
15
- OV7670 ov7670;
16
- Camera cam(ov7670);
+ #include "ov767x.h"
+ // uncomment the correct camera in use
+ OV7670 ov767x;
17
+ // OV7675 ov767x;
18
+ Camera cam(ov767x);
19
#define IMAGE_MODE CAMERA_RGB565
20
#else
21
#error "This board is unsupported."
0 commit comments