nicolás rodríguez / Mbed 2 deprecated BCD_GUIA2PT2

Dependencies:   mbed

Fork of BCD_GUIA2 by nicolás rodríguez

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers BCDSEG.h Source File

BCDSEG.h

00001 #ifndef BCDSEG_h
00002 #define BCDSEG_h
00003 #include "mbed.h"
00004 
00005 class anodoo
00006 {
00007     public:
00008         int entrada(PinName A, PinName B, PinName C, PinName D);
00009         void visual(PinName A, PinName B, PinName C, PinName D, PinName E, PinName F, PinName G );
00010         void bcd(int number);
00011         void dual(PinName uno, PinName dos, int unidades, int decenas, int tiempo);
00012     private:
00013         PinName _A;PinName _B; PinName _C; PinName _D; PinName _E; PinName _F; PinName _G;
00014         int Sw;
00015         
00016 };
00017 
00018 #endif