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.
Revision 2:6fbcc988ac6a, committed 2014-11-19
- Comitter:
- Corinthians
- Date:
- Wed Nov 19 07:03:47 2014 +0000
- Parent:
- 1:ffc2292c68db
- Commit message:
- blink rate change;
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Wed Nov 19 07:02:46 2014 +0000
+++ b/main.cpp Wed Nov 19 07:03:47 2014 +0000
@@ -5,8 +5,8 @@
int main() {
while(1) {
myled = 0;
- //wait(0.2);
- //myled = 0;
- //wait(0.2);
+ wait(0.05);
+ myled = 1;
+ wait(0.05);
}
}