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:
- dshin
- Date:
- 2021-03-16
- Revision:
- 2:c9a1ef1c71d4
- Parent:
- 0:302424d154ab
File content as of revision 2:c9a1ef1c71d4:
#include "mbed.h" // https://os.mbed.com/docs/mbed-os/v5.15/tools/creating-a-new-program.html Serial pc(USBTX, USBRX, 115200); // baud rate 115200 DigitalOut led(LED1); // led = LED1 int main() { while (true) { led = 0; printf("LED1 is ON\r\n"); thread_sleep_for(500); led = 1; printf("LED1 is OFF\r\n"); thread_sleep_for(500); } }