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
Fork of blink by
main.cpp
00001 #include "mbed.h" 00002 DigitalOut led1(LED1); 00003 DigitalOut led2(LED2); 00004 DigitalOut led3(LED3); 00005 DigitalOut led4(LED4); 00006 00007 int main() { 00008 while(1) { 00009 00010 led1= 1; 00011 wait(0.2); 00012 led1 = 0,led2= 1; 00013 wait(0.2); 00014 led2= 0; 00015 led3= 1; 00016 wait(0.2); 00017 led3=0; 00018 led4= 1; 00019 wait(0.2); 00020 led4 = 0,led3=1; 00021 wait(0.2); 00022 led3= 0; 00023 led2= 1; 00024 wait(0.2); 00025 led2= 0; 00026 led1= 1; 00027 wait(0.2); 00028 } 00029 }
Generated on Fri Jul 15 2022 05:41:46 by
