Completed Scan Mux

Dependencies:   mbed

Fork of Microprocessors_Template by EECS397

Revision:
2:c09b7ead913c
Parent:
1:cff235122df8
--- a/main.cpp	Sat Feb 03 17:49:10 2018 +0000
+++ b/main.cpp	Tue Feb 06 17:01:02 2018 +0000
@@ -46,10 +46,12 @@
             channelData[i] = muxOut.read();
         }
 
+        pc.printf("Printing for Scan_Mux.\n");
+
         for(int i = 0; i < 16; i++) {
 
             //print out
-            pc.printf("The channel data for %d is: %d\n", i, channelData[i]);
+            pc.printf("The channel data for %d is: %f\n", i, channelData[i] * 3.3f);
 
         }
     }