Skip to content

Commit e6f3272

Browse files
committed
Kateryna's comments
1 parent 5228e89 commit e6f3272

File tree

10 files changed

+24
-23
lines changed

10 files changed

+24
-23
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The shield has an IMU that can provide precise acceleration, angular rate measur
3030
</Feature>
3131

3232
<Feature title="Camera Support" image="camera">
33-
This shield has a camera connector with support for a range of ArduCam cameras. Display the camera feed directly on the display!
33+
This shield has a camera connector with support for a range of Arducam® cameras. Display the camera feed directly on the display!
3434
<FeatureLink title="Camera Guide" url="/tutorials/giga-display-shield/camera-tutorial"/>
3535
</Feature>
3636

content/hardware/10.mega/shields/giga-display-shield/tech-specs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Sensors:
1717
Pins:
1818
LED: 1 RGB LED (I2C)
1919
Power:
20-
Circuit operating voltage: 3.3V
20+
Circuit operating voltage: 3.3 V
2121
Dimensions:
2222
Width: 80 mm
2323
Length: 106 mm

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ The connector is located just above the display, which makes it possible to see
112112

113113
This shield has a built-in IMU module, the **BMI270**. This sensor can be used for a number of purposes, for example to automatically orientate an object on the screen, see the following tutorial:
114114

115-
- [Giga Display Shield Automatic Orientation](/tutorials/giga-display-shield/image-orientation)
115+
- [GIGA Display Shield Automatic Orientation](/tutorials/giga-display-shield/image-orientation)
116116

117117
To access **BMI270**, use the [BMI270-250](https://www.arduino.cc/reference/en/libraries/arduino_bmi270_bmm150/) library. Please note that the sensor is not connected to the main I2C bus, so you will need to initialize the sensor on another bus. To do so, simply add the line below to the top of your sketch:
118118

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ To access it, we can use a layer library called [Arduino_GigaDisplay_GFX](https:
1212
## Goals
1313

1414
In this guide we will cover:
15-
- Learn how to draw and print to the display,
16-
- How to draw basic shapes (circles, rectangles etc)
17-
- How to update values on the screen,
15+
- Learn how to draw and print to the display.
16+
- How to draw basic shapes (circles, rectangles etc).
17+
- How to update values on the screen.
1818

1919
## Hardware & Software Needed
2020

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

2525
## Installation
@@ -227,7 +227,7 @@ void changeSwitch() {
227227
}
228228
```
229229

230-
***Learn more about the Giga Display's touch interface in the [Touch Interface Guide](/tutorials/giga-display-shield/basic-touch).***
230+
***Learn more about the GIGA Display's touch interface in the [Touch Interface Guide](/tutorials/giga-display-shield/basic-touch).***
231231

232232
## Summary
233233

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

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ In this section, we will go through the fundamental elements of an LVGL sketch:
4646
- how to add an object to the grid,
4747
- how to update the display.
4848

49-
***At the end of this section, you will find a complete example which implements a grid layout. You can [skip directly to the example](#minimal-example), but if you have no prior experience with lvgl, we recommend you follow the information below.***
49+
***At the end of this section, you will find a complete example which implements a grid layout. You can [skip directly to the example](#minimal-example), but if you have no prior experience with LVGL, we recommend you follow the information below.***
5050

5151
### Display Shield Configuration
5252

@@ -226,7 +226,7 @@ To make sure we see the image use the align function to make it centered. Then a
226226
lv_obj_set_size(img1, 200, 150);
227227
```
228228

229-
![An image rendered on the Display Shield with LVGL](assets/image.png)
229+
![An image rendered on the GIGA Display Shield with LVGL](assets/image.png)
230230

231231
**Full Example:**
232232

@@ -299,7 +299,7 @@ The startup state of the checkbox can be set with `lv_obj_add_state()`. Where th
299299
lv_obj_add_state(checkbox, LV_STATE_CHECKED);
300300
```
301301

302-
![Checkboxes rendered on the Display Shield with LVGL](assets/checkboxes.png)
302+
![Checkboxes rendered on the GIGA Display Shield with LVGL](assets/checkboxes.png)
303303

304304
**Full Example:**
305305

@@ -374,7 +374,7 @@ The size of the radio button is set with `lv_style_set_radius`. To make the radi
374374
lv_style_set_bg_img_src(&style_radio_chk, NULL);
375375
```
376376

377-
![Radio buttons rendered on the Display Shield with LVGL](assets/radiobuttons.png)
377+
![Radio buttons rendered on the GIGA Display Shield with LVGL](assets/radiobuttons.png)
378378

379379
**Full Example:**
380380

@@ -469,7 +469,7 @@ If you want a label by your slider it can be created like you would create any o
469469
lv_obj_align_to(label, slider, LV_ALIGN_OUT_BOTTOM_MID, 0, 10);
470470
```
471471

472-
![Slider rendered on the Display Shield with LVGL](assets/slider.png)
472+
![Slider rendered on the GIGA Display Shield with LVGL](assets/slider.png)
473473

474474
**Full Example:**
475475

@@ -593,7 +593,7 @@ static void set_bar_val(void * bar, int32_t val) {
593593
}
594594
```
595595

596-
![A bar rendered on the Display Shield with LVGL](assets/bar.gif)
596+
![A bar rendered on the GIGA Display Shield with LVGL](assets/bar.gif)
597597

598598
**Full Example:**
599599

@@ -708,7 +708,8 @@ static void button_event_callback(lv_event_t * e) {
708708
}
709709
```
710710

711-
![A button rendered on the Display Shield with LVGL](assets/button.png)
711+
![A button rendered on the GIGA Display Shield with LVGL](assets/button.png)
712+
712713
![Button when it has been pressed](assets/button-clicked.png)
713714

714715
**Full Example:**

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,4 +202,4 @@ void loop() { }
202202

203203
## Conclusion
204204

205-
In this tutorial, we used basic drawing functions with the Giga Display Shield. Using the `ArduinoGraphics` library we managed to draw the Arduino logo with just a few simple commands. Using these basic functions it is possible to create most images that you can think of. Now you can let your imagination run wild and draw to your heart's content!
205+
In this tutorial, we used basic drawing functions with the GIGA Display Shield. Using the `ArduinoGraphics` library we managed to draw the Arduino logo with just a few simple commands. Using these basic functions it is possible to create most images that you can think of. Now you can let your imagination run wild and draw to your heart's content!

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

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

1212
## Hardware & Software Needed
1313

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

1818
## Overview
@@ -69,7 +69,7 @@ The IRQ example demonstrates how to set up an interrupt that triggers a function
6969

7070
## Delay Example
7171

72-
An important factor to consider is that the `loop()` on the GIGA R1 is executed at a very fast rate, meaning that you will register several touches each time you touch the screen.
72+
An important factor to consider is that the `loop()` on the GIGA R1 WiFi is executed at a very fast rate, meaning that you will register several touches each time you touch the screen.
7373

7474
This means that whenever you tap the screen, even quickly, you register somewhere between **5-20 touches**. So if you want a specific function to only execute once on a specific touch point, you will need to implement a delay in your code.
7575

content/hardware/10.mega/shields/giga-display-shield/tutorials/06.image-orientation/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ Any image could be used in the sketch. This tutorial and the example uses an ima
170170

171171
Now try rotating your device to see if the image behaves correctly. If the image does not rotate correctly have another look at the values you entered into the previous sketch. It might help to try and run the simple IMU readings printer sketch to take a quick look at the IMU values in the serial monitor. This will help you figure out what values should be considered when the device is being moved.
172172

173-
[Gif of the orientation sketch running on the screen]()
173+
[GIF of the orientation sketch running on the screen]()
174174

175175
## Conclusion
176176

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
@@ -97,7 +97,7 @@ This sketch uses the [Arduino_Graphics library](https://www.arduino.cc/reference
9797

9898
### Volume Indication Sketch
9999

100-
This sketch requires the [lvgl library](https://github.com/lvgl/lvgl), please make sure that is installed before you upload the sketch. The sketch will show a bar on the screen that is animated when noise is made, functionally making it display the volume of the microphones readings. For more information about using lvgl with the GIGA Display Shield, take a look at our documentation [here](tutorials/lvgl-guide). You will find the full sketch below:
100+
This sketch requires the [lvgl library](https://github.com/lvgl/lvgl), please make sure that is installed before you upload the sketch. The sketch will show a bar on the screen that is animated when noise is made, functionally making it display the volume of the microphones readings. For more information about using LVGL with the GIGA Display Shield, take a look at our documentation [here](tutorials/lvgl-guide). You will find the full sketch below:
101101

102102
```arduino
103103
#include <PDM.h>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tags: [Display, Camera, ArduCam]
77

88
## Introduction
99

10-
The GIGA Display Shield comes with an Arducam camera connector. In this tutorial, we will go through what cameras are compatible with the display shield, how to connect the camera, and how to run a sketch to stream the camera feed to the display.
10+
The GIGA Display Shield comes with an Arducam® camera connector. In this tutorial, we will go through what cameras are compatible with the display shield, how to connect the camera, and how to run a sketch to stream the camera feed to the display.
1111

1212
## Hardware & Software Needed
1313

0 commit comments

Comments
 (0)