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

Revision:
0:01e942c09c17
Child:
1:68f1c45d6017
diff -r 000000000000 -r 01e942c09c17 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue May 03 14:15:25 2016 +0000
@@ -0,0 +1,13 @@
+#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); 
+    
+}
\ No newline at end of file