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:
- ohashi_koji
- Date:
- 2016-06-10
- Revision:
- 0:9c59e5c83e1b
File content as of revision 0:9c59e5c83e1b:
#include "mbed.h" DigitalOut myled_a(LED1); DigitalOut myled_b(LED3); int main() { while(1) { myled_a = 1; myled_b = 0; wait(1); myled_a = 0; myled_b = 1; wait(1); } }