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 00002 #include "mbed.h" 00003 00004 DigitalOut led1(LED1); 00005 DigitalOut led2(LED2); 00006 DigitalOut led3(LED3); 00007 DigitalOut led4(LED4); 00008 00009 int main() { 00010 printf("blinky-for-lychee\r\n"); 00011 00012 while(1) { 00013 led1 = 1; 00014 wait(0.2); 00015 led2 = 1; 00016 wait(0.2); 00017 led3 = 1; 00018 wait(0.2); 00019 led4 = 1; 00020 wait(0.2); 00021 led1 = 0; 00022 wait(0.2); 00023 led2 = 0; 00024 wait(0.2); 00025 led3 = 0; 00026 wait(0.2); 00027 led4 = 0; 00028 wait(0.2); 00029 } 00030 } 00031
Generated on Thu Jul 21 2022 05:43:35 by
1.7.2