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:
- Jeej
- Date:
- 2016-01-04
- Revision:
- 4:c7d265a01e7e
- Parent:
- 2:b60cb847489c
File content as of revision 4:c7d265a01e7e:
#include "mbed.h" #include "rtos.h" DigitalOut myled(LED1); int main() { while(true) { // Wait to avoid beeing stuck in loop myled = 1; // LED is ON Thread::wait(200); // 200 ms myled = 0; // LED is OFF Thread::wait(1000); // 1 sec } }