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-04
Revision:
1:68f1c45d6017
Parent:
0:01e942c09c17

File content as of revision 1:68f1c45d6017:

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

const float VAL = 10000; // 10000 ohms

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 ());    
    ad5270.write_RDAC(VAL);
    pc.printf("Current value of the AD5270 is %f", ad5270.read_RDAC ());    
    while(1);
    
}