código guía 2 sesión 1

Dependencies:   mbed

Fork of bdc_7seg by sergio burbano

Committer:
grupo3
Date:
Sat Aug 12 20:51:41 2017 +0000
Revision:
0:a638e4f36df2
Child:
1:64569742f2ec
c?digo gu?a 2 primera sesion

Who changed what in which revision?

UserRevisionLine numberNew contents of line
grupo3 0:a638e4f36df2 1 #ifndef BCD_SEC_h
grupo3 0:a638e4f36df2 2 #define BCD_SEC_h
grupo3 0:a638e4f36df2 3 #include "mbed.h"
grupo3 0:a638e4f36df2 4
grupo3 0:a638e4f36df2 5 class anodo
grupo3 0:a638e4f36df2 6 {
grupo3 0:a638e4f36df2 7 public:
grupo3 0:a638e4f36df2 8 int entrada(PinName a,PinName b, PinName c,PinName d );
grupo3 0:a638e4f36df2 9 void visual(PinName a,PinName b, PinName c,PinName d,PinName e,PinName f, PinName g);
grupo3 0:a638e4f36df2 10 void BDC(int number);
grupo3 0:a638e4f36df2 11 private:
grupo3 0:a638e4f36df2 12 PinName _a;PinName _b;PinName _c;PinName _d;PinName _e;PinName _f;PinName _g;
grupo3 0:a638e4f36df2 13 int dipSw;
grupo3 0:a638e4f36df2 14 };
grupo3 0:a638e4f36df2 15 #endif