You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#include "himax.h" // Exclusive Camera library for the Portenta Vision Shield
96
96
HM01B0 himax;
97
97
Camera cam(himax);
98
+
FrameBuffer fb; // Buffer to save the capture
98
99
```
99
100
100
101
For the bitmap headers binary file we will need some information like the resolution of the image, the bits per pixel and more, so we define our settings as shown:
@@ -244,8 +245,8 @@ Once the capture is saved, remove the SD Card and plug it into a computer/phone
244
245
#### Full Sketch
245
246
246
247
```cpp
247
-
#include"SDMMCBlockDevice.h"// Multi Media Card APIs
248
-
#include"FATFileSystem.h"// Mbed API for portable and embedded systems
248
+
#include"SDMMCBlockDevice.h"// Multi Media Card APIs
249
+
#include"FATFileSystem.h"// Mbed API for portable and embedded systems
0 commit comments