AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Key.h Source File

Key.h

00001 #ifndef KEY_H
00002 #define KEY_H
00003 
00004 #include "Button.h"
00005 
00006 class Key : public Button{
00007     public:
00008     Key(PinName keyPin);
00009 };
00010     
00011 
00012 
00013 #endif