deepak2_library

Dependencies:   mbed

Revision:
0:5132df1c0031
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Wed Nov 30 09:20:53 2016 +0000
@@ -0,0 +1,23 @@
+#include "mbed.h"
+ 
+DigitalOut pin(LED2);
+ 
+int main() {
+    // do something...
+ 
+    // flash 5 times
+    for(int i=0; i<10; i++) {
+        pin = !pin;
+        wait(0.2);
+    }
+ 
+    // do something else
+ 
+    // flash 2 times
+    for(int i=0; i<4; i++) {
+        pin = !pin;
+        wait(0.2);
+    }
+ 
+    // do another thing
+}