diff --git a/website/versioned_docs/version-fils_en/project/2026/radu_gabriel.oprea/index.md b/website/versioned_docs/version-fils_en/project/2026/radu_gabriel.oprea/index.md index 786a4b281fb..d98c653108a 100644 --- a/website/versioned_docs/version-fils_en/project/2026/radu_gabriel.oprea/index.md +++ b/website/versioned_docs/version-fils_en/project/2026/radu_gabriel.oprea/index.md @@ -21,9 +21,11 @@ This project was chosen to explore embedded systems programming with Rust, real- ### Main components: Audio Input Module (INMP441 microphone) -Signal Processing Module (pitch detection using FFT) +Signal Processing Module (YIN pitch detection) Control Unit (ESP32 microcontroller) Output Interface (TFT display) +Actuator Module (DS04-NFC continuous rotation servo) +Audio Feedback Module (3.3V passive buzzer) ### Connections: @@ -31,6 +33,8 @@ The microphone captures sound via I2S and sends it to the ESP32. The ESP32 processes the signal to detect frequency (pitch detection). The detected pitch is compared with standard ukulele tuning values (G4, C4, E4, A4). Results are sent to the TFT display, showing whether the note is flat, sharp, or in tune. +If the detected string is flat or sharp, the ESP32 drives the DS04-NFC continuous rotation servo to tighten or loosen the string. +When the string is in tune, the passive buzzer provides a short audio confirmation. ### System Data Flow @@ -51,13 +55,18 @@ Implemented audio capture via I2S and basic signal processing (FFT). Integrated display output and completed pitch detection logic with visual feedback. ## Hardware + ESP32 DevKit1 (ESP-WROOM-32) INMP441 I2S Digital Microphone -1.3” TFT Display (ST7789, 240x240) +1.44" SPI LCD Module with ST7735 Controller (128x128 px) +DS04-NFC Continous Rotation Servo +3.3V Passive Buzzer +SYB-170 Colored Mini Breadboard +30 cm 40p Male-Female Wires ### Schematics -KiCAD schematics will be added here as soon as it's done. +![Kicad](kicad.svg) ### Bill of Materials @@ -65,7 +74,11 @@ KiCAD schematics will be added here as soon as it's done. |--------|--------|-------| | [ESP32 DevKit V1](https://sigmanortec.ro/placa-dezvoltare-esp32-cu-wifi-si-bluetooth?SubmitCurrency=1&id_currency=2&srsltid=AfmBOoqsWrsP--au7FCZ8bSrXUsl5neEnXNTZ6X_o2jJOZFMJI9ANC0hGgE) | Main microcontroller | [42 RON](https://sigmanortec.ro/placa-dezvoltare-esp32-cu-wifi-si-bluetooth?SubmitCurrency=1&id_currency=2&srsltid=AfmBOoqsWrsP--au7FCZ8bSrXUsl5neEnXNTZ6X_o2jJOZFMJI9ANC0hGgE) | | [INMP441 I2S Microphone](https://www.optimusdigital.ro/en/others/12548-inmp441-mems-high-precision-omnidirectional-microphone-module-i2s.html?srsltid=AfmBOoorwAe9erzXWIhca8h9l2gHLA-k6hmzWy75FjUOStzRLvaQ1qG6) | Audio input for pitch detection | [20 RON](https://www.optimusdigital.ro/en/others/12548-inmp441-mems-high-precision-omnidirectional-microphone-module-i2s.html?srsltid=AfmBOoorwAe9erzXWIhca8h9l2gHLA-k6hmzWy75FjUOStzRLvaQ1qG6) | -| [1.3” TFT Display (ST7789)](https://sigmanortec.ro/display-tft-13-ips-spi-65k-culori-lcd-st7789v-240x240-7p) | Displays tuning feedback | [31 RON](https://sigmanortec.ro/display-tft-13-ips-spi-65k-culori-lcd-st7789v-240x240-7p) | +| [1.44" SPI LCD Module with ST7735 Controller (128x128 px)](https://www.optimusdigital.ro/en/lcds/3552-modul-lcd-de-144-cu-spi-i-controller-st7735-128x128-px.html) | Displays tuning feedback | [30 RON](https://www.optimusdigital.ro/en/lcds/3552-modul-lcd-de-144-cu-spi-i-controller-st7735-128x128-px.html) | +| [DS04-NFC Continous Rotation Servo](https://www.optimusdigital.ro/en/servomotors/1161-ds04-nfc-continous-rotation-servo.html?search_query=servo&results=171) | Mechanically tightens or loosens the ukulele string | [40 RON](https://www.optimusdigital.ro/en/servomotors/1161-ds04-nfc-continous-rotation-servo.html?search_query=servo&results=171) | +| [3.3V Passive Buzzer](https://www.optimusdigital.ro/en/buzzers/12247-3-v-or-33v-passive-buzzer.html?search_query=buzzer&results=62) | Audio feedback when the string is in tune | [1 RON](https://www.optimusdigital.ro/en/buzzers/12247-3-v-or-33v-passive-buzzer.html?search_query=buzzer&results=62) | +| [SYB-170 Colored Mini Breadboard](https://www.optimusdigital.ro/en/breadboards/244-white-mini-breadboard.html?search_query=breadboard&results=194) | Prototyping board for connecting the modules | [2 RON](https://www.optimusdigital.ro/en/breadboards/244-white-mini-breadboard.html?search_query=breadboard&results=194) | +| [30 cm 40p Male-Female Wires](https://www.optimusdigital.ro/en/wires-with-connectors/878-set-fire-mama-tata-40p-30-cm.html?search_query=wires&results=429) | Jumper wires for connecting the ESP32, display, microphone, buzzer, and servo | [10 RON](https://www.optimusdigital.ro/en/wires-with-connectors/878-set-fire-mama-tata-40p-30-cm.html?search_query=wires&results=429) | --- @@ -73,11 +86,13 @@ KiCAD schematics will be added here as soon as it's done. | Library | Description | Usage | |---------|-------------|-------| -| [embedded-hal](https://github.com/rust-embedded/embedded-hal) | Hardware abstraction layer | Used for interfacing with ESP32 peripherals | -| [rustfft](https://github.com/ejmahler/RustFFT) | FFT libraries | Used for pitch detection | -| [embedded-graphics](https://github.com/embedded-graphics/embedded-graphics) | 2D graphics library | Used for drawing to the display | -| [esp-idf-hal](https://github.com/esp-rs/esp-idf-hal) | I2S module | Used for audio input processing | -| [espup](https://github.com/esp-rs/espup) | ESP Rust tooling | Used for setting up and building the project | +| [esp-idf-svc](https://github.com/esp-rs/esp-idf-svc) | ESP-IDF bindings and services for Rust | Used for GPIO, SPI, I2S, LEDC/PWM, delays, and logging | +| [embedded-hal](https://github.com/rust-embedded/embedded-hal) | Hardware abstraction traits | Used for SPI and GPIO traits in the ST7735 display driver | +| [anyhow](https://github.com/dtolnay/anyhow) | Error handling library | Used to simplify error propagation across hardware initialization and runtime logic | +| [log](https://github.com/rust-lang/log) | Logging facade | Used for serial debug messages during pitch detection | +| [embassy-time](https://github.com/embassy-rs/embassy) | Embedded timing support | Provides the generic time queue required by the ESP-IDF service features | +| [espup](https://github.com/esp-rs/espup) | ESP Rust tooling | Used for installing and configuring the Rust toolchain for ESP32 | +| [espflash](https://github.com/esp-rs/espflash) | ESP flashing tool | Used to upload the compiled firmware to the ESP32 | --- @@ -85,4 +100,4 @@ KiCAD schematics will be added here as soon as it's done. 1. [ESP32 INMP441 - audio](https://github.com/ZioTester/ESP32-MMB-MAX98357A-INMP441-audio) 2. [embedded-graphics examples](https://github.com/embedded-graphics/embedded-graphics/tree/master) -3. [rustfft documentation](https://github.com/ejmahler/RustFFT) \ No newline at end of file +3. [rustfft documentation](https://github.com/ejmahler/RustFFT) diff --git a/website/versioned_docs/version-fils_en/project/2026/radu_gabriel.oprea/kicad.svg b/website/versioned_docs/version-fils_en/project/2026/radu_gabriel.oprea/kicad.svg new file mode 100644 index 00000000000..335dd4abd41 --- /dev/null +++ b/website/versioned_docs/version-fils_en/project/2026/radu_gabriel.oprea/kicad.svg @@ -0,0 +1,20356 @@ + + + +SVG Image created as Oprea_Radu-Gabriel.svg date 2026/05/16 16:52:34 + Image generated by Eeschema-SVG + + + + + + + + + + + +1 +1 + + + + + +2 +2 + + + + + + + + + + +3 +3 + + + + + + + + + + + + + +4 +4 + + + +5 +5 + + + + + + + + + + + + + + + +6 +6 + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +1 + + + + + +2 +2 + + + + + + + + + + +3 +3 + + + + + + + + + + + + + +4 +4 + + + +5 +5 + + + + + + + + + + + + + + + +6 +6 + + + + + + + + + + + + + + + + + + + + + + + + +A +A + + + +B +B + + + + + + + + + + + + + + + + + + +C +C + + + + + + + + + + + + + + + +D +D + + + + + + + + + + + + + + + +A +A + + + +B +B + + + + + + + + + + + + + + + + + + +C +C + + + + + + + + + + + + + + + +D +D + + + + + + + + + + + + +Date: +Date: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +KiCad E.D.A. 8.0.2 +KiCad E.D.A. 8.0.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Rev: +Rev: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Size: A4 +Size: A4 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Id: 1/1 +Id: 1/1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Title: +Title: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +File: Oprea_Radu-Gabriel.kicad_sch +File: Oprea_Radu-Gabriel.kicad_sch + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Sheet: / +Sheet: / + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +PWM +PWM + + + + + + + + + + + + + + + + + + + + +1 +1 + + + + + + + + + + ++ ++ + + + + +2 +2 + + + + + + + + + + + + + + + +- +- + + + +3 +3 + + + + + + + + + + + + + + + +M1 +M1 + + + + + + + + + +DS04-NFC +DS04-NFC + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +1 + + + + + + + + + + +2 +2 + + + + + + + + + + + + + + + +3 +3 + + + + + + + + + + + + + + + +J2 +J2 + + + + + + + + + + + + + + + +INMP441_2 +INMP441_2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +1 + + + + + + + + + + +2 +2 + + + + + + + + + + + + + + + +3 +3 + + + + + + + + + + + + + + + +J1 +J1 + + + + + + + + + + +INMP441_1 +INMP441_1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +1 + + + + + + + + + + +2 +2 + + + + + + + + + + + + +BZ1 +BZ1 + + + + + + + + + + + + + + + + + + + + + + + + + + +Buzzer +Buzzer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +3V3 +3V3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J2-1 +J2-1 + + + + + + + + + + + + + + + + + + + + + + + + + + +IO26 +IO26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J2-10 +J2-10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IO27 +IO27 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J2-11 +J2-11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IO14 +IO14 + + + + + + + + + + + + + + + + + + + + + + + + + + + +J2-12 +J2-12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IO12 +IO12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J2-13 +J2-13 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +GND1 +GND1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J2-14 +J2-14 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IO13 +IO13 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J2-15 +J2-15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +SD2 +SD2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J2-16 +J2-16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +SD3 +SD3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J2-17 +J2-17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +CMD +CMD + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J2-18 +J2-18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +EXT_5V +EXT_5V + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J2-19 +J2-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +EN +EN + + + + + + + + + +J2-2 +J2-2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +SENSOR_VP +SENSOR_VP + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J2-3 +J2-3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +SENSOR_VN +SENSOR_VN + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J2-4 +J2-4 + + + + + + + + + + + + + + + + + + + + + + + + +IO34 +IO34 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J2-5 +J2-5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IO35 +IO35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J2-6 +J2-6 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IO32 +IO32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J2-7 +J2-7 + + + + + + + + + + + + + + + + + + + + + + + +IO33 +IO33 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J2-8 +J2-8 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IO25 +IO25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J2-9 +J2-9 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +GND3 +GND3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J3-1 +J3-1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IO5 +IO5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J3-10 +J3-10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IO17 +IO17 + + + + + + + + + + + + + + + + + + + + + + + + + + +J3-11 +J3-11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IO16 +IO16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J3-12 +J3-12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IO4 +IO4 + + + + + + + + + + + + + + + + + + + + + + +J3-13 +J3-13 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IO0 +IO0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J3-14 +J3-14 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IO2 +IO2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J3-15 +J3-15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IO15 +IO15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J3-16 +J3-16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +SD1 +SD1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J3-17 +J3-17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +SD0 +SD0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J3-18 +J3-18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +CLK +CLK + + + + + + + + + + + + + + + + + + + + + + +J3-19 +J3-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IO23 +IO23 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J3-2 +J3-2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IO22 +IO22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J3-3 +J3-3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +TXD0 +TXD0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J3-4 +J3-4 + + + + + + + + + + + + + + + + + + + + + + + + + + + +RXD0 +RXD0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J3-5 +J3-5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IO21 +IO21 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J3-6 +J3-6 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +GND2 +GND2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J3-7 +J3-7 + + + + + + + + + + + + + + + + + + + + + + + + + + +IO19 +IO19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J3-8 +J3-8 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +IO18 +IO18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J3-9 +J3-9 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +U1 +U1 + + + + + + + + + + + + + + +ESP32-DEVKIT +ESP32-DEVKIT + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +1 + + + + + + + + + + +2 +2 + + + + + + + + + + + + + + + +3 +3 + + + + + + + + + + + + + + + + + + +4 +4 + + + + + + + + +5 +5 + + + + + + + + + + + + + + + + + + + + +6 +6 + + + + + + + + + + + + + + + + + + + + + + + + + + +7 +7 + + + + + + + +8 +8 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +J4 +J4 + + + + + + + + +LCD ST7735 +LCD ST7735 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +INMP441_SCK +INMP441_SCK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +5V +5V + + + + + + + + + + + + + + + + + + + + +SERVO +SERVO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +INMP441_WS +INMP441_WS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +3.3V +3.3V + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +INMP441_SD +INMP441_SD + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +BUZZ +BUZZ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +GND +GND + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +LCD_SDA +LCD_SDA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +LCD_BLK +LCD_BLK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +LCD_DC +LCD_DC + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +LCD_CS +LCD_CS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +LCD_RES +LCD_RES + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +LCD_SCK +LCD_SCK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +LCD_DC +LCD_DC + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +LCD_SDA +LCD_SDA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +LCD_CS +LCD_CS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +LCD_RES +LCD_RES + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +LCD_BLK +LCD_BLK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +INMP441_L/R +INMP441_L/R + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +INMP441_WS +INMP441_WS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +INMP441_L/R +INMP441_L/R + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +5V +5V + + + + + + + + + + + + + + + + + + + + +GND +GND + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +SERVO +SERVO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +INMP441_SCK +INMP441_SCK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +GND +GND + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +INMP441_SD +INMP441_SD + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +3.3V +3.3V + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +LCD_SCK +LCD_SCK + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +3.3V +3.3V + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +GND +GND + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +GND +GND + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +BUZZ +BUZZ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +