Skip to content

Commit c921e9f

Browse files
committed
Josefine's comments
1 parent e6f3272 commit c921e9f

File tree

7 files changed

+13
-12
lines changed

7 files changed

+13
-12
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<FeatureDescription>
22

3-
The GIGA Display Shield has a 3.97” 480x800 RGB touch screen, a digital microphone, a 6 Axis IMU and an RGB LED. The shield can easily be mounted on the GIGA R1 WiFi board.
3+
The GIGA Display Shield has a 3.97” 480x800 RGB touch screen, a digital microphone, a 6-axis IMU and an RGB LED. The shield can easily be mounted on the GIGA R1 WiFi board.
44

55
Utilizing the GIGA R1 WiFi's fast 480 MHz microcontroller, you can build powerful UIs, use interactive 3D animations, display camera feed and much more. The shield is compatible with a wide range of graphics libraries, including [LVGL](https://github.com/lvgl/lvgl), [GFX](https://github.com/bcmi-labs/Arduino_GigaDisplay_GFX/) and [ArduinoGraphics](https://github.com/arduino-libraries/ArduinoGraphics/).
66

@@ -9,7 +9,7 @@ Utilizing the GIGA R1 WiFi's fast 480 MHz microcontroller, you can build powerfu
99
<FeatureList>
1010

1111
<Feature title="3.97” 480x800 RGB touch screen" image="configurability">
12-
A back-light screen with the resolution of a 4.0 TFT-LCD which contains 480x800 pixels, and can display up to 16.7M colors.
12+
A back-light screen with the resolution of a 4.0 TFT-LCD which contains 480x800 pixels, and can display up to 16.7 million colors.
1313
</Feature>
1414

1515
<Feature title="LVGL" image="configurability">

content/hardware/10.mega/shields/giga-display-shield/tutorials/01.getting-started/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ In this guide you will learn how to set your board up with the GIGA R1 WiFi boar
1414

1515
## Hardware & Software Needed
1616

17-
- [GIGA R1 WiFi](https://store.arduino.cc/products/giga-r1-wifi).
18-
- [GIGA Display Shield](https://store.arduino.cc/products/giga-display-shield)
17+
- [Arduino GIGA R1 WiFi](https://store.arduino.cc/products/giga-r1-wifi)
18+
- [Arduino GIGA Display Shield](https://store.arduino.cc/products/giga-display-shield)
1919
- [Arduino IDE](https://www.arduino.cc/en/software)
2020

2121
## Overview

content/hardware/10.mega/shields/giga-display-shield/tutorials/02.gfx-guide/gfx-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ In this guide we will cover:
1818

1919
## Hardware & Software Needed
2020

21-
- [Arduino GIGA R1 WiFi](/hardware/giga-r1-wifi).
21+
- [Arduino GIGA R1 WiFi](/hardware/giga-r1-wifi)
2222
- [Arduino GIGA Display Shield](/hardware/giga-display-shield)
2323
- [Arduino IDE](https://www.arduino.cc/en/software)
2424

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tags: [Display, LVGL]
99

1010
[LVGL](https://lvgl.io/) is a graphical framework for building powerful UIs, and is fully compatible with the GIGA Display Shield. It allows you to build UIs, using pre-made widgets like buttons, images, loading bars, sliders, checkboxes, etc. It also allows you to fully customize the screenspace on the display. In this guide, we will go through some of the different components, so you can learn how to best implement it in your projects.
1111

12-
***LVGL is a large framework, and the aim of this guide is to get you familiar with it. For much more information, visit the [LVGL documentation](https://docs.lvgl.io/master/)***
12+
***LVGL is a large framework, and the aim of this guide is to get you familiar with it. For much more information, visit the [LVGL documentation](https://docs.lvgl.io/master/).***
1313

1414
## Hardware & Software Needed
1515

@@ -114,7 +114,8 @@ Now that the columns and rows have been defined the overall screen needs to be t
114114
lv_obj_set_size(grid, Display.width(), Display.height());
115115
```
116116

117-
Then, just to test it out, let's add an object to the grid.
117+
Then, just to test it out, let's add an object to the grid:
118+
118119
- first declare the `obj` pointer add it to the `grid`,
119120
- then we set the grid cell via `lv_obj_set_grid_cell()` method.
120121

content/hardware/10.mega/shields/giga-display-shield/tutorials/04.basic-draw-and-image/content.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This is a great tutorial for getting started with your shield and exploring what
1414

1515
## Hardware & Software Needed
1616

17-
- [Arduino GIGA R1 WiFi](/hardware/giga-r1-wifi).
17+
- [Arduino GIGA R1 WiFi](/hardware/giga-r1-wifi)
1818
- [Arduino GIGA Display Shield](/hardware/giga-display-shield)
1919
- [Arduino IDE](https://www.arduino.cc/en/software)
2020
- [ArduinoGraphics library](https://www.arduino.cc/reference/en/libraries/arduinographics/)
@@ -140,7 +140,7 @@ Using an online image converter you can pick any image you would like to be disp
140140

141141
### Displaying the Image on the Display
142142

143-
We will be using the example sketch "ArduinoLogo" as the basis for the sketch that lets us display an image. The example sketch can be found under **File->Examples->Arduino_H7_Video->ArduinoLogo**.
143+
We will be using the example sketch "ArduinoLogo" as the basis for the sketch that let us display an image. The example sketch can be found under **File > Examples > Arduino_H7_Video > ArduinoLogo**.
144144

145145
Running the example sketch as is will display the Arduino logo on the screen, like in the image below:
146146

content/hardware/10.mega/shields/giga-display-shield/tutorials/05.basic-touch/basic-touch.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ This library is used to return the number of contact points, and the `x,y` coord
1111

1212
## Hardware & Software Needed
1313

14-
- [Arduino GIGA R1 WiFi](/hardware/giga-r1-wifi).
14+
- [Arduino GIGA R1 WiFi](/hardware/giga-r1-wifi)
1515
- [Arduino GIGA Display Shield](/hardware/giga-display-shield)
1616
- [Arduino IDE](https://www.arduino.cc/en/software)
1717

1818
## Overview
1919

20-
The **Arduino_GigaDisplayTouch** library can be used in combination with any of the available graphics libraries ([see available options](/tutorials/giga-display-shield/getting-started#overview)), but is independent from them and works standalalone.
20+
The **Arduino_GigaDisplayTouch** library can be used in combination with any of the available graphics libraries ([see available options](/tutorials/giga-display-shield/getting-started#overview)), but is independent from them and works standalone.
2121

2222
The library has two methods of reading sensor data:
2323
- **Polling** - continuously read the sensor data through the `getTouchPoint()` method.

content/hardware/10.mega/shields/giga-display-shield/tutorials/07.microphone-tutorial/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ A callback function needs to be set, which is called when new PDM data is ready
5454

5555
`onPDMdata` is the callback function that we will have to create at the end of the sketch.
5656

57-
Now when we want to print or use the readings lets do it with a `for` loop since they are inside a buffer, which we need to step through. But lets first check so that there are readings to be printed with a simple `if` statement. These lines will step through the buffer until all the readings inside are printed and then start over:
57+
Now when we want to print or use the readings let's do it with a `for` loop since they are inside a buffer, which we need to step through. But let's first check so that there are readings to be printed with a simple `if` statement. These lines will step through the buffer until all the readings inside are printed and then start over:
5858

5959
```arduino
6060
if (samplesRead) {

0 commit comments

Comments
 (0)