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 gpo(D0); 00004 DigitalOut led(LED_RED); 00005 DigitalOut led2(LED_GREEN); 00006 //DigitalOut led3(LED_BLUE); 00007 00008 int main() 00009 { 00010 while (true) { 00011 gpo = !gpo; // toggle pin 00012 led = !led; // toggle led 00013 gpo = !gpo; 00014 led2 = !led2; 00015 // gpo = !gpo; 00016 // led3 = !led3; 00017 wait(0.5f); 00018 } 00019 }
Generated on Wed Jul 13 2022 02:00:06 by
1.7.2