Skip to content

Commit 356cc46

Browse files
committed
Format fix
1 parent 0ffc88d commit 356cc46

File tree

2 files changed

+7
-3
lines changed
  • content/hardware/04.pro/shields/portenta-vision-shield/tutorials

2 files changed

+7
-3
lines changed

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,13 @@ mbed::FATFileSystem fileSystem("fs");
103103

104104
#include "camera.h" // Arduino Mbed Core Camera APIs
105105

106-
#include "himax.h" // API to read from the Himax camera found on the Portenta Vision Shield Rev.1
107-
HM01B0 himax;
106+
/*-----Uncomment the library and class for your specific hardware-----*/
107+
108+
//#include "himax.h" // API to read from the Himax camera found on the Portenta Vision Shield Rev.1
109+
//HM01B0 himax;
110+
108111
// OR
112+
109113
#include "hm0360.h" // API to read from the Himax camera found on the Portenta Vision Shield Rev.2
110114
HM0360 himax;
111115

content/hardware/04.pro/shields/portenta-vision-shield/tutorials/getting-started-camera/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Next, let's initialize a camera object and a frame buffer of the size 320*240 (7
6060

6161
```cpp
6262

63-
HM01B0 himax; // for Vision Shield Rev.1
63+
//HM01B0 himax; // for Vision Shield Rev.1
6464

6565
HM0360 himax; // for Vision Shield Rev.2
6666

0 commit comments

Comments
 (0)