test publish

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
huiwang
Date:
Wed Jul 13 08:40:17 2016 +0000
Parent:
0:d70837dfd7f9
Commit message:
0.5s

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Wed Jul 13 08:39:35 2016 +0000
+++ b/main.cpp	Wed Jul 13 08:40:17 2016 +0000
@@ -1,12 +1,12 @@
 #include "mbed.h"
 
-DigitalOut myled(LED1);
+DigitalOut myled(LED2);
 
 int main() {
     while(1) {
         myled = 1;
-        wait(0.2);
+        wait(0.5);
         myled = 0;
-        wait(0.2);
+        wait(0.5);
     }
 }