AD5270 Hello world

Dependencies:   AD5270 mbed

For additional information check out the mbed page of the Analog Devices wiki: https://wiki.analog.com/resources/tools-software/mbed-drivers-all

main.cpp

Committer:
adisuciu
Date:
2016-05-03
Revision:
0:01e942c09c17
Child:
1:68f1c45d6017

File content as of revision 0:01e942c09c17:

#include "mbed.h"
#include "AD5270.h"

Serial pc(USBTX, USBRX); ///< Serial interface to the pc

AD5270 ad5270(D6,20000); // set chipselect and ad5270 max resistance

int main() {
    
    pc.printf("Current value of the AD5270 is %f", ad5270.read_RDAC ());    
    while(1); 
    
}