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
Revision 0:2286d29aa801, committed 2015-11-16
- Comitter:
- schoeni_91
- Date:
- Mon Nov 16 18:21:36 2015 +0000
- Commit message:
- 1 Projekt
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 Mon Nov 16 18:21:36 2015 +0000 @@ -0,0 +1,28 @@ +#include "mbed.h" + +DigitalOut _D20(P1_13); +DigitalOut _D19(P1_12); + + +int main() +{ + + + while(1) + { + _D20=1; + _D19=0; + + + wait_ms(150); + + _D20=0; + _D19=1; + + wait_ms(150); + + } + +} + +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Mon Nov 16 18:21:36 2015 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/9296ab0bfc11 \ No newline at end of file