AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

board/Button.h

Committer:
sillevl
Date:
2017-02-09
Revision:
27:f29805113454
Parent:
11:50572814f73e

File content as of revision 27:f29805113454:

#ifndef BUTTON_H
#define BUTTON_H

#include "mbed.h"

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

};

#endif