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: SFE_APDS9960 mbed
led.cpp
00001 #include<mbed.h> 00002 00003 DigitalOut LED_R(P0_20); 00004 DigitalOut LED_B(P0_19); 00005 00006 void Led_Blink(void) 00007 { 00008 LED_R=0; 00009 LED_B=1; 00010 wait_ms(500); 00011 LED_R=1; 00012 LED_B=0; 00013 wait_ms(500); 00014 LED_R=1; 00015 LED_B=1; 00016 wait_ms(500); 00017 LED_R=0; 00018 LED_B=0; 00019 wait_ms(500); 00020 }
Generated on Fri Jul 15 2022 15:25:13 by
1.7.2