keypad

Dependencies:   mbed TextLCD keypad

Files at this revision

API Documentation at this revision

Comitter:
detay
Date:
Wed Dec 04 12:09:44 2019 +0000
Commit message:
keypad

Changed in this revision

TextLCD.lib Show annotated file Show diff for this revision Revisions of this file
keypad.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
diff -r 000000000000 -r 568acc58974f TextLCD.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TextLCD.lib	Wed Dec 04 12:09:44 2019 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/simon/code/TextLCD/#308d188a2d3a
diff -r 000000000000 -r 568acc58974f keypad.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/keypad.lib	Wed Dec 04 12:09:44 2019 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/teams/Marvas/code/keypad/#7da3ab010a87
diff -r 000000000000 -r 568acc58974f main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Wed Dec 04 12:09:44 2019 +0000
@@ -0,0 +1,22 @@
+#include "mbed.h"
+#include "TextLCD.h"
+#include "Keypad.h"
+TextLCD lcd(PB_0,PA_4,PC_3,PC_2,PB_3,PA_10);
+Keypad key(PC_12, PC_10, PC_11,PD_2,PA_13,PA_14,PA_15,PC_8);
+char key_table[] = { 
+'1', '2', '3', 'A',
+'4', '5', '6', 'B',
+'7', '8', '9', 'C',
+'*', '0', '#', 'D'
+};
+int main() {
+uint32_t key_num;
+while(true) {
+
+while ((key_num = key.read()) != 0){
+lcd.locate(0,0);
+lcd.printf("Sectiginiz Rakam:%c", *(key_table + key_num-1));
+}
+
+}
+}
\ No newline at end of file
diff -r 000000000000 -r 568acc58974f mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Wed Dec 04 12:09:44 2019 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/mbed_official/code/mbed/builds/65be27845400
\ No newline at end of file