AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

board/Button.h

Committer:
sillevl
Date:
2014-12-31
Revision:
11:50572814f73e
Parent:
4:2c91c9eccf3a

File content as of revision 11:50572814f73e:

#ifndef BUTTON_H
#define BUTTON_H

#include "mbed.h"

class Button : public DigitalIn{
    public:
    Button(PinName buttonPin);
    operator int();
    
    protected: 
    //InterruptIn* _interrupt;

};

#endif