Skip to content

Commit f697ecb

Browse files
authored
Merge pull request #530 from arduino/Hannes7eicher/Review-Getting-Started
Hannes7eicher/review getting started
2 parents 3edd99a + a40bcd2 commit f697ecb

File tree

1 file changed

+10
-7
lines changed
  • content/hardware/10.mega/shields/giga-display-shield/tutorials/getting-started

1 file changed

+10
-7
lines changed

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

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,19 @@
22
title: 'Getting Started with the GIGA Display Shield'
33
description: 'Learn how to set up and use the GIGA Display Shield and get an overview of the features.'
44
author: 'Karl Söderby'
5+
hardware:
6+
- hardware/08.mega/boards/giga-r1-wifi
7+
- hardware/08.mega/shields/giga-display-shield
58
tags: [Displays, LVGL, GIGA, IMU]
69
---
710

8-
The [GIGA Display Shield](/hardware/giga-display-shield) is an accessory shield designed for the [GIGA R1 WiFi](/hardware/giga-r1) board. With it, you can render fast & sophisticated user interfaces on a **800x480** display with **touch support**.
11+
The [GIGA Display Shield](/hardware/giga-display-shield) is an accessory shield designed for the [GIGA R1 WiFi](/hardware/giga-r1-wifi) board. With it, you can render fast & sophisticated user interfaces on a **800x480** display with **touch support**.
912

1013
In this guide you will learn how to set your board up with the GIGA R1 WiFi board & become familiar with the available libraries to control it.
1114

1215
## Hardware & Software Needed
1316

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

@@ -34,7 +37,7 @@ The GIGA Display Shield requires you to install the core for GIGA boards, along
3437

3538
### Install GIGA Core
3639

37-
To use the shield you will need to have a GIGA R1 WiFi board. To use the GIGA R1 WiFi, you will need to install the **GIGA core**, which can be done directly in the Arduino IDE, under "Board Manager".
40+
To use the shield you will need a GIGA R1 WiFi board. You also need to install the **GIGA core**, which can be done directly in the Arduino IDE, under "Board Manager".
3841

3942
![Install GIGA core.](assets/install-giga.png)
4043

@@ -81,7 +84,7 @@ To access **BMI270**, use the [BMI270-250](https://www.arduino.cc/reference/en/l
8184
BoschSensorClass imu(Wire1);
8285
```
8386

84-
Note that the examples uses the default `IMU` (uppercase) class, which you will need to replace. Example:
87+
Note that the examples use the default `IMU` (uppercase) class, which you will need to replace. Example:
8588

8689
```
8790
IMU.begin() //for other boards
@@ -90,9 +93,9 @@ imu.begin() //for GIGA Display Shield
9093

9194
## Microphone
9295

93-
This shield has an embedded omnidirectional microphone, **MP34DT06JTR**, which can be used to together with the [PDM](https://docs.arduino.cc/learn/built-in-libraries/pdm) library. This library is shipped with the GIGA core, so there's no need to install it.
96+
This shield has an embedded omnidirectional microphone, **MP34DT06JTR**, which can be used together with the [PDM](https://docs.arduino.cc/learn/built-in-libraries/pdm) library. This library is shipped with the GIGA core, so there's no need to manually install it.
9497

95-
Below is a minimal sketch that will print out the samples in the serial plotter (a tool that is part of the Arduino IDE).
98+
Below is a minimal sketch that will print out the samples in the serial plotter (See [Using the Serial Plotter Tool](/software/ide-v2/tutorials/ide-v2-serial-plotter) for more information).
9699

97100
<CodeBlock url="https://github.com/arduino/ArduinoCore-mbed/blob/main/libraries/PDM/examples/PDMSerialPlotter/PDMSerialPlotter.ino" className="arduino"/>
98101

@@ -119,6 +122,6 @@ void loop() {
119122

120123
## Summary
121124

122-
In this guide we have covered the requirements & installation needs for using the GIGA Display Shield, as well as demonstrating how to access the RGB, IMU & Microphone peripherals.
125+
In this guide we covered the requirements & installation needs for using the GIGA Display Shield, as well as demonstrating how to access the RGB, IMU & Microphone peripherals.
123126

124127
For more tutorials, visit the [documentation page for GIGA Display Shield](/hardware/giga-display-shield).

0 commit comments

Comments
 (0)