Using SPI.h to transfer data from Arduino to AD9833

Hello everyone,
I had a question to all Arduinian. I want to send data from Arduino to AD9833. But in this case, i'm not using AD9833 libraries like MD_AD9833 etc. I declared pin by my self like

#define DAT 11 // pin MOSI 
#define CLK 13 // pin SCK
#define FSY 10 // pin SS AD9833
#define CS 4 // pin SS MCP41010(Digital Potensiometer)

how i transfered from this pin was i made by self ? Thank You. Sorry for my english because english isn't my main language.

Why not?

If the comment is correct you plan to add another component. But that component uses a 4-wire SPI interface. The 3-wire interface of the AD9833 is only SPI-like (although the datasheet says something else this isn't SPI compatible and you cannot connect such a device to the Arduino's SPI bus, at least not if you intend to use the hardware support.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.