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 * 00003 */ 00004 00005 #include "mbed.h" 00006 00007 #define RED (p31) 00008 #define GREEN (p2) 00009 #define BLUE (p3) 00010 #define DELAY_MS (1000) 00011 00012 DigitalOut red(RED); 00013 DigitalOut green(GREEN); 00014 DigitalOut blue(BLUE); 00015 00016 00017 int main() 00018 { 00019 while(1) 00020 { 00021 red = 1; 00022 green = 1; 00023 blue = 1; 00024 wait_ms(DELAY_MS); 00025 red = 0; 00026 green = 0; 00027 blue = 0; 00028 wait_ms(DELAY_MS); 00029 } 00030 } 00031
Generated on Fri Jul 22 2022 07:16:13 by
1.7.2