Shivanand Gowda / SN74CBT3257

Dependents:   MutiplexedDisplaysSocketServer mltiplexed_7_segment_displays_over_ethernet mltiplexed_7_segmt_displays_ethernet Multi_7_Seg

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers SN74CBT3257.h Source File

SN74CBT3257.h

00001 
00002  
00003 #ifndef SN74CBT3257_H
00004 #define SN74CBT3257_H
00005  
00006 #include "mbed.h"
00007  
00008 class SN74CBT3257 {
00009   public:
00010    
00011     
00012  
00013     SN74CBT3257(PinName S0, PinName S1, PinName S2, PinName S3, PinName OEB0, PinName OEB1,PinName OEB2, PinName OEB3);
00014     void Select_Floor_Zero(void);
00015     void Select_Floor_One(void);
00016     void Select_Floor_Two(void);
00017     void Select_Floor_Three(void);
00018     void Select_Floor_Four(void);
00019     void Select_Floor_Five(void);
00020     void Select_Floor_Six(void);
00021     void Select_Floor_Seven(void);
00022      
00023   private:
00024     DigitalOut mS0;
00025     DigitalOut mS1;
00026     DigitalOut mS2;
00027     DigitalOut mS3;
00028     DigitalOut mOE0;
00029     DigitalOut mOE1;
00030     DigitalOut mOE2;
00031     DigitalOut mOE3;
00032    
00033 };
00034  
00035 #endif