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
00001 #include "mbed.h" 00002 DigitalOut LED_1(LED1); 00003 DigitalOut LED_2(LED2); 00004 int main() 00005 { 00006 while(1) { 00007 LED_1 = 1; // LED is ON 00008 LED_2 = 0; // LED is ON 00009 wait(0.5); // 200 ms 00010 LED_1 = 0; // LED is ON 00011 LED_2 = 1; // LED is ON 00012 wait(0.5); // 1 sec 00013 } 00014 }
Generated on Fri Jul 15 2022 13:37:20 by
1.7.2