This is a demonstration program which draws a keypad on the LCD and uses the touch screen to allow an operator to key-in an access code. Two possible codes are allowed to grant to different levels of access. Additionally the push button is used to allow an operator to send Moorse Code pulses in to the device which is checked against two characters to determine if there was a match, and if so, access is granted.

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI mbed-os BSP_DISCO_F429ZI

Also draws a mushroom on the screen and animates it.

Revision:
0:04d4cc695e56
Child:
1:316582aec4fb
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SecurityUnlockDemo-Main.h	Sat Jun 01 05:32:16 2019 +0000
@@ -0,0 +1,26 @@
+
+// ----------------------------------------------------------------------
+// SecurityUnlockDemo-Main.h
+//
+// Fredric L. Rice, May 2019
+//
+// ----------------------------------------------------------------------
+
+#ifndef _SECURITYUNLOCKDEMOMAIN_H_
+#define _SECURITYUNLOCKDEMOMAIN_H_      1
+
+    // We define the format of the keypad data structure which the
+    // module will use to describe the placement of each key
+    typedef struct KeypadLocation
+    {
+        uint16_t u16_screenXLocation;
+        uint16_t u16_screenYLocation;
+        uint16_t u16_keyHeight;
+        uint16_t u16_keyWidth;
+        uint8_t  u8_keyASCIICharacter;
+    } KeypadLocation_t;
+
+#endif
+
+// End of file
+