We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 151b0e4 commit 43e5a6cCopy full SHA for 43e5a6c
content/hardware/04.pro/shields/portenta-vision-shield/tutorials/vs-ard-gs/content.md
@@ -54,6 +54,8 @@ HM01B0 himax;
54
Camera cam(himax);
55
#define IMAGE_MODE CAMERA_GRAYSCALE
56
FrameBuffer fb(320,240,2);
57
+
58
+unsigned long lastUpdate = 0;
59
```
60
61
In the `setup()` function, let's start the Serial communication at `921600` baud rate and initialize the camera using `cam.begin()`.
@@ -270,6 +272,8 @@ Camera cam(himax);
270
272
271
273
274
275
276
277
void setup() {
278
Serial.begin(921600);
279
//Init the cam QVGA, 30FPS
0 commit comments