Fredric Rice / Mbed 2 deprecated DemoKeypadMoorseCodeUnlockTouchAndButton

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI mbed-os BSP_DISCO_F429ZI

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers SecurityUnlockDemo-Moorse.h Source File

SecurityUnlockDemo-Moorse.h

00001 
00002 // ----------------------------------------------------------------------
00003 // SecurityUnlockDemo-Moorse.h
00004 //
00005 // Fredric L. Rice, June 2019
00006 //
00007 // ----------------------------------------------------------------------
00008 
00009 #ifndef _SECURITYUNLOCKDEMOMOORSE_H_
00010 #define _SECURITYUNLOCKDEMOMOORSE_H_      1
00011 
00012 // ----------------------------------------------------------------------
00013 // Describe MACROs which the module may use
00014 //
00015 // ----------------------------------------------------------------------
00016 
00017 // We allow a maximum number of Moorse Code characters to be entered
00018 // using the push button
00019 #define MAX_MOORSE_PULSES       10
00020 
00021 // ----------------------------------------------------------------------
00022 // Function prototypes that we will export
00023 //
00024 // ----------------------------------------------------------------------
00025 
00026 extern void MoorseInit(void);
00027 extern void MoorseScanPushButton(void);
00028 
00029 #endif
00030 
00031 // End of file
00032