PLEASE READ THIS FULLY BEFORE YOU TRY TO MAKE IT YOURSELF
Actually, my project works with an Arduino Uno and a sound/voice module. The wiring is displayed in the schematic below.
It then continues to a 0.5 Ohm speaker which can be connected to the sound/voice module directly, or it can be connected to an amplifier and a speaker. The outlook was roughly made with boxes. When you use the amplifier, then the snoring noise is also amplified. For that use, you'll need some combinations of capacitors and resistors in the input to control them. I used a 4440 stereo amplifier and a 4W, 4 Ohm speaker.
Very importantThe module can record only up to 10 seconds in this connection type. The code for Arduino is as follows below:
int Rec = 11;
int Play = 13;
void setup()
{
pinMode(Rec, OUTPUT);
pinMode(Play, OUTPUT);
}
void loop()
{
digitalWrite(Rec, HIGH);
delay(10000);
digitalWrite(Rec, LOW);
delay(50);
digitalWrite(Play, HIGH);
delay(50);
digitalWrite(Play, LOW);
delay(10000);
}
I think you can understand the code, but if you have any inquiries, contact me via hariprasath514@gmail.com
You should use a speaker with the sound/voice module, but if you don't, search for one like that or just the speaker alone.
Enjoy, have fun!
Comments
Please log in or sign up to comment.