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.
main.cpp
- Committer:
- tamberg
- Date:
- 2015-10-21
- Revision:
- 5:b7b6d69bb4c7
- Parent:
- 4:6bb53ba19ca9
File content as of revision 5:b7b6d69bb4c7:
#include "mbed.h" DigitalOut led(D7); int main() { while(1) { // loop led.write(1); // on wait_ms(500); led.write(0); // off wait_ms(500); } }