Skip to content

Commit 3ccd216

Browse files
committed
Update full sketch
1 parent 7f32d41 commit 3ccd216

File tree

1 file changed

+3
-3
lines changed
  • content/hardware/04.pro/shields/portenta-vision-shield/tutorials/camera-to-bitmap-sd-card

1 file changed

+3
-3
lines changed

content/hardware/04.pro/shields/portenta-vision-shield/tutorials/camera-to-bitmap-sd-card/content.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ First you need to include the needed libraries
8080
#include "FATFileSystem.h" // Mbed API for portable and embedded systems
8181

8282
#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
8484
```
8585

8686
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;
9292
mbed::FATFileSystem fileSystem("fs");
9393

9494
#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
9696
HM01B0 himax;
9797
Camera cam(himax);
9898

@@ -288,7 +288,7 @@ SDMMCBlockDevice blockDevice;
288288
mbed::FATFileSystem fileSystem("fs");
289289

290290
#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
292292
HM01B0 himax;
293293
Camera cam(himax);
294294

0 commit comments

Comments
 (0)