LedControllerTests

Dependencies:   LedController

Fork of ServomotorTests by NerfUS

Revision:
0:07953da87c60
Child:
1:6e4e8b9d6069
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sat Feb 25 18:59:29 2017 +0000
@@ -0,0 +1,14 @@
+#include "mbed.h"
+
+DigitalOut myled(LED1);
+
+int main() 
+{
+    while(1) 
+    {
+        myled = 1;
+        wait(0.2);
+        myled = 0;
+        wait(0.2);
+    }
+}