JIAWEI ZHANG / Mbed 2 deprecated ele350ku

Dependencies:   mbed

Dependents:   Exercise8_1-2-3

Fork of ele350 by JIAWEI ZHANG

Revision:
2:9a0770c4fdd6
Child:
11:e6ddabe64bee
--- /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