Tomislav Grgić / Keypad
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Keypad.h Source File

Keypad.h

00001 #ifndef MBED_KEYPAD_H
00002 #define MBED_KEYPAD_H
00003 
00004 #include "mbed.h"
00005 
00006 class Keypad
00007 {
00008 public:
00009     Keypad(PinName row1, PinName row2, PinName row3, PinName row4,PinName col1, PinName col2, PinName col3, PinName col4);
00010        
00011     char keyscan();
00012     void cetvrtiStupac();
00013 
00014 private:
00015     BusOut _col;
00016     BusIn _row;
00017     
00018     void visokoStanje();
00019     void prviStupac();
00020     void drugiStupac();
00021     void treciStupac();
00022     void colActivate(int state);
00023     
00024 };
00025 
00026 #endif