Skip to content

Commit b8cfae5

Browse files
authored
Merge pull request #1029 from arduino/karlsoderby/nano-rp2040-patch-may23
[NANO-RP2040] Update Microphone Docs
2 parents 67f7a43 + bfd539c commit b8cfae5

File tree

7 files changed

+13
-15
lines changed

7 files changed

+13
-15
lines changed

content/hardware/03.nano/boards/nano-rp2040-connect/essentials.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</EssentialElement>
2323

2424
<EssentialElement title="PDM" type="library" link="https://www.arduino.cc/en/Reference/PDM">
25-
The PDM library allows you to use PDM (Pulse-density modulation) microphones, like the MP34DT05.
25+
The PDM library allows you to use PDM (Pulse-density modulation) microphones, like the MP34DT06JTR.
2626
</EssentialElement>
2727

2828
<EssentialElement link="https://github.com/arduino-libraries/Arduino_LSM6DSOX" title="Arduino_LSM6DSOX" type="library">

content/hardware/03.nano/boards/nano-rp2040-connect/features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The feature packed **Arduino Nano RP2040 Connect** brings the new **Raspberry Pi
3333

3434
<Feature title="Omnidirectional Microphone" image="microphone">
3535

36-
The Nano RP2040 connect comes with the MP34DT05 microphone. It allows you to capture and analyze sound in real time and can be used to create a voice interface to control your peripherals through sound.
36+
The Nano RP2040 connect comes with the MP34DT06JTR microphone. It allows you to capture and analyze sound in real time and can be used to create a voice interface to control your peripherals through sound.
3737

3838
<FeatureLink variant="primary" title="Documentation" url="/tutorials/nano-rp2040-connect/rp2040-microphone-basics"/>
3939
<FeatureLink variant="secondary" title="Library" url="/learn/built-in-libraries/pdm"/>

content/hardware/03.nano/boards/nano-rp2040-connect/tech-specs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Connectivity:
1515
Secure element: ATECC608A-MAHDA-T Crypto IC
1616
Sensors:
1717
IMU: LSM6DSOXTR (6-axis)
18-
Microphone: MP34DT05
18+
Microphone: MP34DT06JTR
1919
Communication:
2020
UART: RX/TX
2121
I2C: A4 (SDA), A5 (SCL)

content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/rp2040-01-technical-reference.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -265,15 +265,15 @@ If you want to learn more on how to use the IMU, please check out the tutorial b
265265

266266
## Microphone
267267

268-
![The MP34DT05 microphone sensor.](assets/MP34DT05-NANORP2040CONNECT.png)
268+
![The MP34DT06JTR microphone sensor.](assets/MP34DT06JTR-NANORP2040CONNECT.png)
269269

270-
### MP34DT05
270+
### MP34DT06JTR
271271

272-
The **MP34DT05** is a compact, low-power omnidirectional digital MEMS microphone with an IC interface. It has a 64 dB signal-to-noise ratio, is capable of sensing acoustic waves and can operate in temperatures of -40 °C to +85 °C.
272+
The **MP34DT06JTR** is a compact, low-power omnidirectional digital MEMS microphone with an IC interface. It has a 64 dB signal-to-noise ratio, is capable of sensing acoustic waves and can operate in temperatures of -40 °C to +85 °C.
273273

274274
### PDM Library
275275

276-
To access the data from the MP34DT05, we need to use the [PDM](https://www.arduino.cc/en/Reference/PDM) library that is included in the **Arduino Mbed OS Nano Boards** core. If the core is installed, you will find an example that works by browsing **File > Examples > PDM > PDMSerialPlotter**.
276+
To access the data from the MP34DT06JTR, we need to use the [PDM](https://www.arduino.cc/en/Reference/PDM) library that is included in the **Arduino Mbed OS Nano Boards** core. If the core is installed, you will find an example that works by browsing **File > Examples > PDM > PDMSerialPlotter**.
277277

278278
- **Please note:** The sampling frequency in the PDMSerialPlotter example is set to 16000 Hz. If the microphone appears to not be working (monitor is printing a value of -128), try to change this rate to 20000 Hz. You can change this at the top of the PDMSerialPlotter example sketch, as shown in the example below:
279279

content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-microphone-basics/rp2040-microphone-basics.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: 'Reading Microphone Data on Nano RP2040 Connect'
33
difficulty: intermediate
44
compatible-products: [nano-rp2040-connect]
5-
description: 'Learn how to read data from the MP34DT05 microphone, and how to use the data to turn ON or OFF the built-in RGB.'
5+
description: 'Learn how to read data from the MP34DT06JTR microphone, and how to use the data to turn ON or OFF the built-in RGB.'
66
tags:
77
- Microphone
88
- RGB
@@ -22,7 +22,7 @@ software:
2222

2323
## Introduction
2424

25-
The Nano RP2040 connect comes with the **MP34DT05** microphone, which can be used to record audio. In this tutorial, we will setup a basic application that simply turns ON or OFF the built in RGB LED whenever a loud noise is recorded (for example snapping our fingers).
25+
The Nano RP2040 connect comes with the **MP34DT06JTR** microphone, which can be used to record audio. In this tutorial, we will setup a basic application that simply turns ON or OFF the built in RGB LED whenever a loud noise is recorded (for example snapping our fingers).
2626

2727
>**Note:** if you need help setting up your environment to use your Arduino Nano RP2040 board, please refer to [this installation guide](/software/ide-v1/tutorials/getting-started/cores/arduino-mbed_nano).
2828
@@ -42,20 +42,18 @@ The goals of this project are:
4242
- [PDM](https://www.arduino.cc/en/Reference/PDM) library installed.
4343
- [Arduino Nano RP2040 Connect](https://store.arduino.cc/nano-rp2040-connect).
4444

45-
## The MP34DT05 Microphone
45+
## The MP34DT06JTR Microphone
4646

47-
![The MP34DT05 microphone.](assets/rp2040-microphone-img-00.png)
47+
![The MP34DT06JTR microphone.](assets/rp2040-microphone-img-00.png)
4848

4949
Microphones are components that convert physical sound into digital data. Microphones are commonly used in mobile terminals, speech recognition systems or even gaming and virtual reality input devices.
5050

51-
The MP34DT05 sensor is a ultra-compact microphone that use PDM (Pulse-Density Modulation) to represent an analog signal with a binary signal. The sensor's range of different values are the following:
51+
The MP34DT06JTR sensor is a ultra-compact microphone that use PDM (Pulse-Density Modulation) to represent an analog signal with a binary signal. The sensor's range of different values are the following:
5252

5353
- Signal-to-noise ratio: 64dB
5454
- Sensitivity: -26dBFS ±3dB
5555
- Temperature range: -40 to 85°C
5656

57-
If you want to read more about the MP34DT05 sensor you can take a look at the <a href="https://content.arduino.cc/assets/Nano_BLE_Sense_mp34dt05-a.pdf" target="_blank">datasheet</a>.
58-
5957
### Circuit
6058

6159
This tutorial requires no additional circuit. You will only need to connect the board to a computer through a Micro USB cable.

content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-python-api/rp2040-python-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ while (True):
168168
time.sleep_ms(100)
169169
```
170170

171-
### Microphone (MP34DT05)
171+
### Microphone (MP34DT06JTR)
172172

173173
Below example can be used with OpenMV's frame buffer window (top right corner).
174174

0 commit comments

Comments
 (0)