NerfUS

Dependencies:   mbed mbed-rtos HardwareInterface EthernetInterface WebSocketClient

Files at this revision

API Documentation at this revision

Comitter:
dupm2216
Date:
Thu Feb 09 02:01:51 2017 +0000
Parent:
6:362affb5ac7e
Child:
8:0498fa4f5c1f
Commit message:
Change blink period to 1 second; ; - The real purpose of this commit is to test the "pull request" feature

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Sat Feb 04 23:10:53 2017 -0500
+++ b/main.cpp	Thu Feb 09 02:01:51 2017 +0000
@@ -8,8 +8,8 @@
     while(1)
     {
         myled = 1;
-        wait(0.2);
+        wait(0.5);
         myled = 0;
-        wait(0.2);
+        wait(0.5);
     }
 }