//conversor de bcd a 7 segmentos

Dependencies:   mbed

Committer:
cristiany
Date:
Sat Aug 19 21:50:37 2017 +0000
Revision:
1:c773d22f95b3
Parent:
0:da3425777443
ADC WITH LEDS

Who changed what in which revision?

UserRevisionLine numberNew contents of line
cristiany 0:da3425777443 1 #ifndef seg_h
cristiany 0:da3425777443 2 #define seg_h
cristiany 0:da3425777443 3 #include "mbed.h"
cristiany 0:da3425777443 4 class cod
cristiany 0:da3425777443 5 {
cristiany 0:da3425777443 6 public:
cristiany 1:c773d22f95b3 7
cristiany 1:c773d22f95b3 8 void salida(PinName a,PinName b,PinName c,PinName d,PinName e,PinName f,PinName g,PinName h, PinName i, PinName j, PinName k, PinName l);
cristiany 1:c773d22f95b3 9 void leds(int number);
cristiany 1:c773d22f95b3 10 private:
cristiany 1:c773d22f95b3 11 PinName a_;PinName b_;PinName c_;PinName d_;PinName e_;PinName f_;PinName g_;PinName h_; PinName i_; PinName j_; PinName k_; PinName l_;
cristiany 1:c773d22f95b3 12
cristiany 0:da3425777443 13 };
cristiany 0:da3425777443 14
cristiany 0:da3425777443 15 #endif