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.
Dependencies: mbed
main.cpp
00001 #include "mbed.h" 00002 00003 DigitalOut green_led(LED1); 00004 DigitalOut red_led(LED2); 00005 00006 int main() { 00007 00008 while(1) { 00009 00010 // LEDs ON 00011 green_led = 1; 00012 red_led = 1; 00013 00014 wait(0.2); // wait 200 ms 00015 00016 // LEDs OFF 00017 green_led = 0; 00018 red_led = 0; 00019 00020 wait(0.8); // wait 800 ms 00021 } 00022 00023 }
Generated on Thu Jul 14 2022 00:15:13 by
1.7.2