Voltímetro ADC y BCD

Dependencies:   mbed

Fork of BCD_GUIA2 by nicolás rodríguez

Revision:
1:b6f946fdfb2f
Parent:
0:246c93030d74
--- a/BCDSEG.cpp	Sat Aug 12 21:54:13 2017 +0000
+++ b/BCDSEG.cpp	Sat Aug 19 21:44:23 2017 +0000
@@ -18,4 +18,20 @@
 {
     BusOut display(_G,_F,_E,_D,_C,_B,_A); 
     display=anodo[number];
+}
+void anodoo::dual(PinName uno, PinName dos, int unidades, int decenas, int tiempo)
+{
+    DigitalOut enable1(uno);
+    DigitalOut enable2(dos);
+    for (int i = 0; i<tiempo;i++)
+    {
+        enable1=1;
+        enable2=0;
+        bcd(unidades);
+        wait(0.002);
+        enable1=0;
+        enable2=1;
+        bcd(decenas);
+        wait(0.002);
+    }
 }
\ No newline at end of file