Skip to content

Commit bb820f0

Browse files
Review fixes
1 parent 4729dcc commit bb820f0

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

content/hardware/09.mega/shields/giga-display-shield/compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ software:
44
- web-editor
55
hardware:
66
boards:
7-
- GIGA R1 WiFi
7+
- giga-r1-wifi
88
carriers: ~
99
shields: ~

content/hardware/09.mega/shields/giga-display-shield/features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Using the fast dual core microcontroller (480MHz / 240MHz) of the GIGA R1 WiFi p
88

99
<FeatureList>
1010

11-
<Feature title="3.97” 480x800 RGB touch screen" image="">
11+
<Feature title="3.97” 480x800 RGB touch screen" image="configurability">
1212

1313
<FeatureLink title="" url=""/>
1414
</Feature>

content/hardware/09.mega/shields/giga-display-shield/tutorials/drawing-basics/basic-draw.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
---
2-
title: Using Basic Draw Functions with the Giga Display Shield
2+
title: Using Basic Draw Functions with the GIGA Display Shield
33
description: 'Learn how to use basic draw functions to create images on the GIGA display shield'
44
author: Benjamin Dannegård
55
tags: [Display, Draw]
66
---
77

8-
The most basic use of the Giga display shield is to draw an image on the screen using code. This is made easy by using the library `ArduinoGraphics`. In this tutorial we will go through how to draw the Arduino logo on the Giga display shield with the commands provided by this library. This is a great tutorial for getting started with your shield and exploring what possibilities the library gives us.
8+
The most basic use of the GIGA display shield is to draw an image on the screen using code. This is made easy by using the library `ArduinoGraphics`. In this tutorial we will go through how to draw the Arduino logo on the GIGA display shield with the commands provided by this library.
9+
10+
This is a great tutorial for getting started with your shield and exploring what possibilities the library gives us.
911

1012
## Hardware & Software Needed
1113

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Guide for Using LVGL With the Giga Display Shield
2+
title: Guide for Using LVGL With the GIGA Display Shield
33
description: 'Learn how to use LVGL with the GIGA display shield'
44
author: Benjamin Dannegård
55
tags: [Display, LVGL]
@@ -161,7 +161,7 @@ To make sure we see the image use the align function to make it centered. Then a
161161
lv_obj_t * checkbox;
162162
```
163163

164-
Assign the screenspace info to `obj`, that was detailed in the #Screen configuration section. To create the checkbox object use `lv_checkbox_create(obj)` and assign it to a suitable variable, here we use the `checkbox` pointer. Next set the text that will appear next to the checkbox by using `lv_checkbox_set_text(checkbox, "Example");`, here `Example` will be printed next to the checkbox.
164+
Assign the screenspace info to `obj`, that was detailed in the [Screen Configuration](#lvgl-screen-configuration) section. To create the checkbox object use `lv_checkbox_create(obj)` and assign it to a suitable variable, here we use the `checkbox` pointer. Next set the text that will appear next to the checkbox by using `lv_checkbox_set_text(checkbox, "Example");`, here `Example` will be printed next to the checkbox.
165165

166166
```arduino
167167
obj = lv_obj_create(screen);
@@ -367,4 +367,4 @@ This guide went through the building blocks of the different components that can
367367
This example sketch will show the different components in a 2x2 grid.
368368

369369
## Next Step
370-
If you are interested in finding out how to use LVGL with the on-board IMU check out our [Orientation tutorial](). There are more features of the display shield to discover, for example using the camera connector. For more information on that have a look at our [Camera tutorial](). 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 display shield just remember to use the display-specific configuration that was shown at the [start of this tutorial](#Display Shield Configuration).
370+
If you are interested in finding out how to use LVGL with the on-board IMU check out our [Orientation tutorial](). There are more features of the display shield to discover, for example using the camera connector. For more information on that have a look at our [Camera tutorial](). 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 display shield just remember to use the display-specific configuration that was shown at the [start of this tutorial](#display-shield-configuration).

0 commit comments

Comments
 (0)