AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Button.h Source File

Button.h

00001 #ifndef BUTTON_H
00002 #define BUTTON_H
00003 
00004 #include "mbed.h"
00005 
00006 class Button : public DigitalIn{
00007     public:
00008     Button(PinName buttonPin);
00009     operator int();
00010     
00011     protected: 
00012     //InterruptIn* _interrupt;
00013 
00014 };
00015 
00016 #endif