Libreria de Victor

Dependents:   ImpresionGrupo

Files at this revision

API Documentation at this revision

Comitter:
vikglz
Date:
Tue Feb 16 14:20:29 2016 +0000
Commit message:
LIbreria para el proyecto 2

Changed in this revision

victor.h Show annotated file Show diff for this revision Revisions of this file
diff -r 000000000000 -r 977dfc2cc3b3 victor.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/victor.h	Tue Feb 16 14:20:29 2016 +0000
@@ -0,0 +1,12 @@
+#include "mbed.h"
+
+//DigitalOut myled(LED1);
+
+void victor_mensaje() {
+    while(1) {
+        myled = 1;
+        wait(0.2);
+        myled = 0;
+        wait(0.2);
+    }
+}