Sumejja Porca Elma Gazetic

Dependencies:   mbed

Fork of LV1_Grupa4_Tim003 by tim003 tim003

Revision:
0:c4af5c4c483c
Child:
1:153b7d14f473
diff -r 000000000000 -r c4af5c4c483c main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Mar 03 17:17:57 2014 +0000
@@ -0,0 +1,12 @@
+#include "mbed.h"
+
+DigitalOut myled(LED1);
+
+int main() {
+    while(1) {
+        myled = 1;
+        wait(1);
+        myled = 0;
+        wait(1);
+    }
+}