-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d077559
commit b7e67a8
Showing
1 changed file
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,69 @@ | ||
# pico-microphone | ||
Capture audio from a microphone on your Raspberry Pi Pico or any RP2040 based board. 🎤 | ||
|
||
|
||
## Hardware | ||
|
||
* RP2040 board | ||
* [Raspberry Pi Pico](https://www.raspberrypi.org/products/raspberry-pi-pico/) | ||
* Microphones | ||
* Analog | ||
* [Electret Microphone Amplifier - MAX9814 with Auto Gain Control](https://www.adafruit.com/product/1713) | ||
* PDM | ||
* [Adafruit PDM MEMS Microphone Breakout](https://www.adafruit.com/product/3492) | ||
|
||
### Default Pinout | ||
|
||
#### Analog Microphone | ||
|
||
| Raspberry Pi Pico / RP2040 | Analog Microphone | | ||
| -------------------------- | ----------------- | | ||
| 3.3V | VCC | | ||
| GND | GND | | ||
| GPIO 26 | OUT | | ||
|
||
#### PDM Microphone | ||
|
||
| Raspberry Pi Pico / RP2040 | PDM Microphone | | ||
| -------------------------- | ----------------- | | ||
| 3.3V | VCC | | ||
| GND | GND | | ||
| GND | SEL | | ||
| GPIO 2 | CLK | | ||
| GPIO 3 | DAT | | ||
|
||
GPIO pins are configurable in examples or API. | ||
|
||
## Examples | ||
|
||
See [examples](examples/) folder. | ||
|
||
|
||
## Cloning | ||
|
||
```sh | ||
git clone https://github.com/sandeepmistry/pico-microphone.git | ||
``` | ||
|
||
## Building | ||
|
||
1. [Set up the Pico C/C++ SDK](https://datasheets.raspberrypi.org/pico/getting-started-with-pico.pdf) | ||
2. Set `PICO_SDK_PATH` | ||
```sh | ||
export PICO_SDK_PATH=/path/to/pico-sdk | ||
``` | ||
3. Create `build` dir, run `cmake` and `make`: | ||
``` | ||
mkdir build | ||
cd build | ||
cmake .. -DPICO_BOARD=pico | ||
make | ||
``` | ||
4. Copy example `.uf2` to Pico when in BOOT mode. | ||
|
||
## Acknowledgements | ||
|
||
This project was created on behalf of the [Arm Software Developers](https://developer.arm.com/) team, follow them on Twitter: [@ArmSoftwareDev](https://twitter.com/armsoftwaredev) and YouTube: [Arm Software Developers](https://www.youtube.com/channel/UCHUAckhCfRom2EHDGxwhfOg) for more resources! | ||
|
||
The [OpenPDM2PCM](https://os.mbed.com/teams/ST/code/X_NUCLEO_CCA02M1//file/53f8b511f2a1/Middlewares/OpenPDM2PCM/) library is used to filter raw PDM data into PCM. The [TinyUSB](https://github.com/hathach/tinyusb) library is used in the `usb_microphone` example. | ||
|