yajuan yue / Mbed 2 deprecated ele350

Dependencies:   mbed

Fork of ele350 by JIAWEI ZHANG

Revision:
2:9a0770c4fdd6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/button.h	Thu Oct 22 10:29:35 2015 +0000
@@ -0,0 +1,16 @@
+#ifndef _BUTTON_H_
+#define _BUTTON_H_
+
+#include "mbed.h"
+#include <string>
+
+class Button {
+    private:
+              
+    DigitalIn* pin;
+    public:
+    Button(string name);
+    bool isPressed();
+};
+
+#endif