Skip to content

Commit 47ffa8b

Browse files
committed
Getting Started Review
1 parent 3edd99a commit 47ffa8b

File tree

1 file changed

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

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ author: 'Karl Söderby'
55
tags: [Displays, LVGL, GIGA, IMU]
66
---
77

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**.
8+
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**.
99

1010
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.
1111

1212
## Hardware & Software Needed
1313

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

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

3535
### Install GIGA Core
3636

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".
37+
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".
3838

3939
![Install GIGA core.](assets/install-giga.png)
4040

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

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

8686
```
8787
IMU.begin() //for other boards
@@ -90,9 +90,9 @@ imu.begin() //for GIGA Display Shield
9090

9191
## Microphone
9292

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.
93+
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.
9494

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).
95+
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).
9696

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

0 commit comments

Comments
 (0)