MCP3221_Test Program.

Dependencies:   MCP3221 mbed

Files at this revision

API Documentation at this revision

Comitter:
DaveStyles
Date:
Wed Oct 31 22:16:00 2012 +0000
Commit message:
MCP3221 Test Program

Changed in this revision

MCP3221.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MCP3221.lib	Wed Oct 31 22:16:00 2012 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/DaveStyles/code/MCP3221/#db4e3d0374fe
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Wed Oct 31 22:16:00 2012 +0000
@@ -0,0 +1,25 @@
+
+#include "mbed.h"
+#include "MCP3221.h"
+
+DigitalOut myled(LED1);
+
+Serial pc(USBTX, USBRX); // tx, rx
+AnalogIn ain(p20);
+MCP3221 adc(p9, p10, 5.0); //sda, scl, supplyVoltage
+
+int main() {
+
+    wait(1);
+    while (1) {
+        
+        pc.printf("ain: %f :: ", ain.read()*3.3);
+        pc.printf("adc: %f \r\n", adc.read());
+        
+        
+        myled=!myled;
+
+
+        wait(1);
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Wed Oct 31 22:16:00 2012 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/e2ac27c8e93e
\ No newline at end of file