Skip to content

Commit 1a7a95a

Browse files
authored
Merge pull request #1378 from ProgrammingElectronicsAcademy/patch-5
Update content.md
2 parents 23cb012 + d26e796 commit 1a7a95a

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ void loop() {
198198

199199
### Image
200200

201-
To display an image on the screen we first need to define what that image that should be. Take the desired image, convert it into the correct format and place the image in the same folder as the sketch. Now use `LV_IMG_DECLARE(filename);`. For example the image we use will be named `img_arduinologo`.
201+
To display an image on the screen we first need to define what that image that should be. Take the desired image, [convert it into the correct format](https://docs.lvgl.io/master/overview/img.html#online-converter) and place the image in the same folder as the sketch. Now use `LV_IMG_DECLARE(filename);`. For example the image we use will be named `img_arduinologo`.
202202

203203
```arduino
204204
LV_IMG_DECLARE(img_arduinologo);
@@ -780,4 +780,4 @@ This example sketch will show the different components in a 2x2 grid.
780780
## Next Step
781781
LVGL has a lot of customizability, if you are interested in playing around more with this, you can find many different examples on the official website for [LVGL](https://docs.lvgl.io/master/examples.html). These can easily be put in a sketch for the GIGA Display Shield, just remember to use the display-specific configuration that was shown at the [start of this tutorial](#display-shield-configuration).
782782

783-
The GIGA Display Shield features some on-board sensors, like an IMU and a microphone. To see how these can be used with LVGL check out our [Orientation tutorial](/tutorials/giga-display-shield/image-orientation), which will show you how to use the on-board IMU to rotate an image. Or have a look at our [Microphone tutorial](/tutorials/giga-display-shield/microphone-tutorial), which will show you how to merge microphone readings with LVGL components.
783+
The GIGA Display Shield features some on-board sensors, like an IMU and a microphone. To see how these can be used with LVGL check out our [Orientation tutorial](/tutorials/giga-display-shield/image-orientation), which will show you how to use the on-board IMU to rotate an image. Or have a look at our [Microphone tutorial](/tutorials/giga-display-shield/microphone-tutorial), which will show you how to merge microphone readings with LVGL components.

0 commit comments

Comments
 (0)