Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed-rtos mbed HardwareInterface
Fork of NerfUS_cmake_cleanup by
Revision 7:e5414568de93, committed 2017-02-09
- 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);
}
}
