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.
Fork of mbed_blinky by
Revision 21:927c132ae8ca, committed 2018-07-18
- Comitter:
- Bongjun
- Date:
- Wed Jul 18 06:25:24 2018 +0000
- Parent:
- 20:7c9e1ce926ec
- Commit message:
- add "printf" function and set the serial speed
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 |
--- a/main.cpp Mon Mar 05 00:46:55 2018 +0000 +++ b/main.cpp Wed Jul 18 06:25:24 2018 +0000 @@ -1,12 +1,14 @@ #include "mbed.h" - -DigitalOut myled(LED1); +// define the Serial object +Serial pc(USBTX, USBRX); +DigitalOut led1(LED1); int main() { - while(1) { - myled = 1; - wait(0.2); - myled = 0; - wait(0.2); + pc.baud(115200); + while (true) { + led1 = !led1; + // Print something over the serial connection + pc.printf("Blink! LED is now %d\r\n", led1.read()); + wait(0.5); } }
--- a/mbed.bld Mon Mar 05 00:46:55 2018 +0000 +++ b/mbed.bld Wed Jul 18 06:25:24 2018 +0000 @@ -1,1 +1,1 @@ -https://os.mbed.com/users/mbed_official/code/mbed/builds/aa5281ff4a02 \ No newline at end of file +http://mbed.org/users/mbed_official/code/mbed/builds/a7c7b631e539 \ No newline at end of file