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-20
- Revision:
- 4:6bb53ba19ca9
- Parent:
- 2:b60cb847489c
- Child:
- 5:b7b6d69bb4c7
File content as of revision 4:6bb53ba19ca9:
#include "mbed.h" #define OFF 0; #define ON 1; DigitalOut led(D7); int main() { while(1) { led = ON; wait_ms(500); led = OFF; wait_ms(500); } }