AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Revision:
0:4a0929f1b4fd
Child:
1:c80248c83025
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Feb 07 20:50:33 2013 +0000
@@ -0,0 +1,14 @@
+#include "mbed.h"
+#include "Airsofttimer.h"
+
+
+DigitalOut myled(LED1);
+
+int main() {
+    while(1) {
+        myled = 1;
+        wait(0.2);
+        myled = 0;
+        wait(0.2);
+    }
+}