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:
- quickeman
- Date:
- 2018-10-15
- Revision:
- 3:c9e7b856026c
- Parent:
- 2:55e5c2c48913
- Child:
- 4:9827e5952222
- Child:
- 5:56de8fa841e2
File content as of revision 3:c9e7b856026c:
#include "mbed.h" //hello guys, this is a test DigitalOut myled(LED1); // This is the main() function int main() { while(1) { myled = 1; wait(10); myled = 0; wait(100); } }