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 0:cf7dea7dce80, committed 2015-01-25
- Comitter:
- robt
- Date:
- Sun Jan 25 16:26:18 2015 +0000
- Commit message:
- Real Time Lab Program
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
mbed.bld | Show annotated file Show diff for this revision Revisions of this file |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Sun Jan 25 16:26:18 2015 +0000 @@ -0,0 +1,24 @@ +#include "mbed.h" +PwmOut dimmer(p25); + +int main() { + + dimmer.period(0.02); + + while(1) { + dimmer=0; + wait(0.5); + dimmer=0.2; + wait(0.5); + dimmer=0.4; + wait(0.5); + dimmer=0.6; + wait(0.5); + dimmer=0.8; + wait(0.5); + dimmer=1; + wait(0.5); + } + + +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Sun Jan 25 16:26:18 2015 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/4fc01daae5a5 \ No newline at end of file