Maker Pro
Maker Pro

How to interface Arduino to a 12-bit serial DAC

T

Tom2000

Jan 1, 1970
0
Can anyone give me some pointers on what I would need to do to get a
TLV5618 12bit serial DAC running with an Arduino?

I want to be able to output 0-5v under program control.

http://focus.ti.com/lit/ds/symlink/tlv5618a.pdf

Particularly how I connect CS, SCLK, and REF to get the chip working.

Thanks,

After a quick peek at the data sheet, it looks like the shiftout
command will do the job.

You'll have to handle the CS lead yourself. Just assign it to any
convenient output pin, drop it, shift your data to the DAC, then raise
CS again.

The Arduino help pages explain the use of the shiftout routine.

Good luck!

Tom
 
T

Tom2000

Jan 1, 1970
0
Tom,

Thanks so much, that helps a lot - can I tie Vin and REF to +5v? Or
does REF need to be different?

Dave

You sure can, Dave.

And, like the AVdd input to your Arduino, make sure that the REF pin
is well bypassed. Any noise on this pin will appear on your analog
output.

Have fun!

Tom
 
Bypass?
Hmmm...

<newb>

This is a capacitor between the pin and ground, right?
What's a typical value for this cap?

</newb>

Dave
 
T

Tom2000

Jan 1, 1970
0
Bypass?
Hmmm...

Well, at the minimum, a 0.1 uF ceramic. See how the output sounds and
looks. Add a tantalum if you need more. Also, bypass the rest of
your chips with, at the minimum, a 0.1 uF ceramic.

Good luck!

Tom
 
Top