bcd a siete seg

Dependencies:   BCDSEG mbed

Files at this revision

API Documentation at this revision

Comitter:
briandk
Date:
Sat Aug 12 21:19:45 2017 +0000
Commit message:
Conversor BCD a 7 segmentos

Changed in this revision

BCDSEG.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
diff -r 000000000000 -r c9697e9b4944 BCDSEG.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/BCDSEG.lib	Sat Aug 12 21:19:45 2017 +0000
@@ -0,0 +1,1 @@
+https://developer.mbed.org/users/briandk/code/BCDSEG/#3d7ebc7de009
diff -r 000000000000 -r c9697e9b4944 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sat Aug 12 21:19:45 2017 +0000
@@ -0,0 +1,20 @@
+//CODIGO DE BCD A 7 SEGMENTOS: BRIAN BARRETO, ESTEFANO OCHOA, SEBASTIAN SOLORZANO
+
+#include "mbed.h"
+# include "DECO.h"
+
+int NUM;
+int dip;
+int main() {
+    sieteseg objeto;
+    objeto.Visual(D6,D7,D8,D9,D10,D11,D12); 
+    
+    while(1) {
+        NUM=objeto.entrada(D2,D3,D4,D5);    
+        objeto.bcd(NUM);
+        wait(0.3);
+              
+    }
+    
+}
+
diff -r 000000000000 -r c9697e9b4944 mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Sat Aug 12 21:19:45 2017 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/fd96258d940d
\ No newline at end of file