yajuan yue / Mbed 2 deprecated ele350

Dependencies:   mbed

Fork of ele350 by JIAWEI ZHANG

button.h

Committer:
GGHHHH
Date:
2015-10-22
Revision:
2:9a0770c4fdd6

File content as of revision 2:9a0770c4fdd6:

#ifndef _BUTTON_H_
#define _BUTTON_H_

#include "mbed.h"
#include <string>

class Button {
    private:
              
    DigitalIn* pin;
    public:
    Button(string name);
    bool isPressed();
};

#endif