Difference between revisions of "Voice Interaction Hat for MakePython"

From MakerFabsWiki
Jump to: navigation, search
(Record device)
(Features)
Line 9: Line 9:
 
===Features===
 
===Features===
 
*WM8960, the low power, high-quality stereo CODEC.<br>
 
*WM8960, the low power, high-quality stereo CODEC.<br>
*3W power speaker.<br>
+
*1W power speaker.<br>
 
*Two ADMP401 MEMs microphone.<br>
 
*Two ADMP401 MEMs microphone.<br>
 
*Maximum voice capture distance: 3m.<br>
 
*Maximum voice capture distance: 3m.<br>

Revision as of 06:57, 19 December 2020

Attention!!! This product has not been released.

About the product

Introduce

Voice Interaction Hat for MakePython integrates wm8960 chip, speaker, and microphone together, and works with MakePython ESP32. MakePython ESP32 acts as a controller to interact with the audio codec chip wm8960 through i2s to realize functions such as recording sound and playing audio. At the same time, the board is equipped with an SD card module, which can save audio in the card, or read the audio in the card for playback.
Model: xxx
Voice Interaction Hat for MakePython 101.jpg

Features

  • WM8960, the low power, high-quality stereo CODEC.
  • 1W power speaker.
  • Two ADMP401 MEMs microphone.
  • Maximum voice capture distance: 3m.
  • Audio jack on board.
  • Support Micro SD Card.

Diagram

Voice Interaction Hat for MakePython 102.jpg

Pins Description

500px

Prepare before used

Hardware

1. Voice Interaction Hat for MakePython can’t work independently because it is not equipped with an MCU, it need work with MakePython ESP32(Wrover), also can work with other controller connection pins. You can get the Makepython ESP32(Wrover) module from here MakePython ESP32(Wrover)
2. The connection between the controller and the module can be made according to the pin description when other microcontrollers are used.

Voice Interaction Hat for MakePython 104.jpg

3. Combined with MakePython ESP32, insert the SD card, plug in the cable for power supply.

Software

1. Install Arduino IDE.
2. Install ESP32-supported packages after the Arduino IDE installed. The detailed installation tutorial can be viewed here: Arduino_ESP32

Voice Interaction Hat for MakePython 105.jpg
  • Click “Tools>Board>Boards Manager” to search for and install the ESP32 library.
Voice Interaction Hat for MakePython 106.jpg

3. Install the Adafruit_GFX.h library.

  • Click “Tools> Manager Libraries” to search for and install Adafruit GFX library.
Voice Interaction Hat for MakePython 107.jpg

4. Install the Adafruit_SSD1306.h library.

  • Click “Tools> Manager Libraries” to search for and install Adafruit_SSD1306 library.
Voice Interaction Hat for MakePython 108.jpg

Record Demo

1. Download the codes from github, open the code Project_ESP32-Voice-Interaction/example/record/record.ino with Arduino.
2. Select Tools-> Board-> ESP32 Wrover Module , and Tools-> Port-> COM… .

Voice Interaction Hat for MakePython 111.jpg

3. Verify and upload the code.

Voice Interaction Hat for MakePython 112.jpg

4. Make sure you've inserted the SD card, otherwise it might not work.
5. reset ESP32, press the left button to start recording, recording will end at 5S.

500px

6. If you want to modify the recording length, you can modify it in the program.

WM8960_Record(filename, i2s_buffer, record_time);  //record_time is the recording length 

7. After the recording is over, the player will play the recording.

Play Demo

1. Prepare the music file and copy it to the SD card.
2. Open the code Project_ESP32-Voice-Interaction/example/adc/adc.ino with Arduino.
3. Select Tools-> Board-> ESP32 Wrover Module , and Tools-> Port-> COM… .
4. Fill the name of the music that will be played in the code.

 WM8960_Play("/speak.wav", i2s_buffer);  //"speak.wav" is the name of music  

5. Verify and upload the code.
6. The player will be playing the music loop.

Record device

Voice Interaction Hat for MakePython 109.jpg

  • Open the code Project_ESP32-Voice-Interaction/example/ESP32_Record_Play/ESP32_Record_Play.ino with Arduino.
  • Select Tools-> Board-> ESP32 Wrover Module , and Tools-> Port-> COM… .
  • Verify and upload the code.
  • Turn up and down to select the menu, press to confirm the selection.
500px
  • After entering the recording function, you need to keep pressing the button until the recording ends.
  • The playback function can display two recorded files, one is the current recorded completed, and the other is the last recorded file.
Voice Interaction Hat for MakePython 110.jpg

F&Q

You can list your question here or contact support@makerfabs.com for technology support. Detailed descriptions of your question will be helped to solve your question.

Recources