How to make a Voice Recorder?

I want to make a voice recorder using an MCU(8051 or PIC). The recording time doesn't matter at this time. I just want to learn how to digitalize inputted voice by a microphone and write it to internal RAM. And after this I want to learn how to make it voice again from 1s and

0s format and send it to speaker.
Reply to
Tolga Onbay
Loading thread data ...

App note and source files:

Solid State Voice Recorder Using Flash MSP430

formatting link

Reply to
Donald

You are never going to be able to use *Internal* RAM. Neither the PIC nor

8051 have more than a few 100 bytes. Generating sounds from a pre recorded sample stored in ROM is possible but still limited by the size of available memory

formatting link
gives a good guide to encoding sounds on a PC and playing back on a PIC.
formatting link
follows on from the above (costs $1.50 to purchase)

I would suggest looking at generating sound first, from samples recorded on a PC. Apart from anything else, if you start with the recording side you will end up with data that you have no idea as to whether it is correct or not.

An alternative approach is to look at recognising speech rather than recording it.

formatting link

Reply to
Andrew

Winbond make single chip voice recorder.

Need to look at pwm.

Basically record the voice on a pc , just a few seconds at a low mono sample rate. Then convert it to

Keil gives an example for their mcb2130 board. Examples comes with the eval version of their arm compiler. Just plays short samples of voice back using pwm.

formatting link

You can play music on the pic using a similar method. See

formatting link
ringtone example on a 16f877.

For recording voice, look at using the adc on the chip you have. To start with try hooking up a little electric mic to one of the adc inputs and sampling it. Could send it to a pc via the usart and record and plot it to see what resolution it gives.

Alex

Reply to
Alex Gibson

ElectronDepot website is not affiliated with any of the manufacturers or service providers discussed here. All logos and trade names are the property of their respective owners.