Skip to content

Commit 48121c1

Browse files
authored
Merge pull request #1585 from arduino/benjamindannegard/display-shield-updates
[GIGA Display Shield] Forum updates
2 parents 2bfb060 + b27c5c4 commit 48121c1

File tree

2 files changed

+4
-2
lines changed
  • content/hardware/10.mega/shields/giga-display-shield/tutorials

2 files changed

+4
-2
lines changed

content/hardware/10.mega/shields/giga-display-shield/tutorials/03.lvgl-guide/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Take a look at this graphic to understand it better:
133133

134134
### Update Loop
135135

136-
Include this in the loop of your sketch to make sure the LVGL engine is running and updating the screen.
136+
Include this in the loop of your sketch to make sure the LVGL engine is running and updating the screen. The `lv_timer_handler()` function should be called at max every 5 milliseconds. If it would be called more frequently than that please use a non-blocking method to delay it.
137137

138138
```arduino
139139
void loop() {

content/hardware/10.mega/shields/giga-display-shield/tutorials/08.camera-tutorial/content.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Depending on what camera you are using it should be changed accordingly:
5454
- HM01B0: `#define ARDUCAM_CAMERA_HM01B0`
5555
- HM0360: `#define ARDUCAM_CAMERA_HM0360`
5656
- GC2145: `#define ARDUCAM_CAMERA_GC2145`
57-
- OV7675: `#define ARDUCAM_CAMERA_OV7675`
57+
- OV7675: `#define ARDUCAM_CAMERA_OV767x`
5858

5959
The sketch will then capture frames into the framebuffer and print a live camera feed to the display.
6060

@@ -169,6 +169,8 @@ void loop() {
169169
}
170170
```
171171

172+
***Note: Depending on the camera being used the captured resolution might be smaller than the screen. If this is the case, there will be a black bar displayed next to the captured feed, it will not be automatically centered.***
173+
172174
## Conclusion
173175

174176
This tutorial went through how to connect a compatible camera to the shield and also how to test it out quickly with the example sketch included in the core. Now you should see a live feed from the camera on your GIGA Display Shield!

0 commit comments

Comments
 (0)