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
Copy file name to clipboardExpand all lines: content/hardware/04.pro/shields/portenta-vision-shield/tutorials/camera-to-bitmap-sd-card/content.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -80,7 +80,7 @@ First you need to include the needed libraries
80
80
#include"FATFileSystem.h"// Mbed API for portable and embedded systems
81
81
82
82
#include"camera.h"// Arduino Mbed Core Camera APIs
83
-
#include"himax.h"//Exclusive Camera library for the Portenta Vision Shield
83
+
#include"himax.h"//API to read from the Himax camera found on the Portenta Vision Shield
84
84
```
85
85
86
86
Then we define the following objects with their respective constructor (`blockDevice` and `fileSystem` objects), needed for getting access to the SD Card and the file system.
@@ -92,7 +92,7 @@ SDMMCBlockDevice blockDevice;
92
92
mbed::FATFileSystem fileSystem("fs");
93
93
94
94
#include "camera.h" // Arduino Mbed Core Camera APIs
95
-
#include "himax.h" // Exclusive Camera library for the Portenta Vision Shield
95
+
#include "himax.h" // API to read from the Himax camera found on the Portenta Vision Shield
96
96
HM01B0 himax;
97
97
Camera cam(himax);
98
98
@@ -288,7 +288,7 @@ SDMMCBlockDevice blockDevice;
288
288
mbed::FATFileSystem fileSystem("fs");
289
289
290
290
#include "camera.h" // Arduino Mbed Core Camera APIs
291
-
#include "himax.h" // Exclusive Camera library for the Portenta Vision Shield
291
+
#include "himax.h" // API to read from the Himax camera found on the Portenta Vision Shield
0 commit comments