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 00003 DigitalOut led1(LED1); 00004 DigitalOut led2(LED2); 00005 DigitalOut led3(LED3); 00006 DigitalOut led4(LED4); 00007 00008 int main() { 00009 while (1) { 00010 led1 = 1; 00011 wait(0.05); 00012 led2 = 1; 00013 wait(0.05); 00014 led3 = 1; 00015 wait(0.05); 00016 led4 = 1; 00017 wait(0.05); 00018 00019 led1 = 0; 00020 wait(0.05); 00021 led2 = 0; 00022 wait(0.05); 00023 led3 = 0; 00024 wait(0.05); 00025 led4 = 0; 00026 wait(0.05); 00027 } 00028 }
Generated on Sun Jul 17 2022 20:14:42 by
1.7.2