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: Hotboards_leds mbed
Fork of toggle by
main.cpp
00001 00002 /* 00003 * The simplest program II, blink a led on pin PA_5 00004 * but this time using the toggle function 00005 * 00006 */ 00007 00008 #include "mbed.h" 00009 #include "Hotboards_leds.h" 00010 00011 //Creates a simple led object 00012 Hotboards_leds led( PA_5 ); 00013 00014 int main() 00015 { 00016 while(1) 00017 { 00018 //Toggles led 00019 led.toggle( ); 00020 wait_ms( 300 ); 00021 } 00022 }
Generated on Sun Jul 17 2022 19:48:40 by
1.7.2
