Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[SOLVED] Create a my arduino into a sound card.

Status
Not open for further replies.

FyrewurXedge

Newbie level 5
Joined
Dec 6, 2013
Messages
8
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
78
Create my arduino into a sound card.

Hello guys. I wanted to know if it possible to create my Arduino into a DAC and use it as a sound card for my 3.5mm jack headphone. I laptop's sound card doesn't work so i want to create a sound card out of my arduino.

Is this even possible? If it is possible can someone help me out?
 
Last edited:

You could make an arduino play sounds, but they would not be overly good (Lower quality). An arduino is not really powerful enough for this task. It would also be cheaper to pick up a usb sound card off ebay.

The problem is with the sample speed. So you will need an external DAC. You will also have to write your own driver for the OS to use it. I also have concerns about the serial port being to slow.

People have used arduinos to play music but most use a SD card. A SPI bus is much faster than the serial connection used to connect to the usb port. Also most use PWM, which is 8 bits on the arduino which limits the audio quality. The arduino is only 16MHz so the sample rate for the PWM channel will be lower. This assumes that the code takes no time away from the audio sampling and data transfers are fast. The arduino uses a general microprocessor, so it is not really good at high speed signal processing.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top