Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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
Generated on Fri Nov 25 2022 08:49:05 by
1.7.2