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 /*Program Example 3.2: Flashes red and green LEDs in simple time-based pattern 00002 */ 00003 #include "mbed.h" 00004 DigitalOut redled(p5); //define and name a digital output on pin 5 00005 DigitalOut greenled(p6); //define and name a digital output on pin 6 00006 00007 int main() 00008 { 00009 while(1) { 00010 redled = 1; 00011 greenled = 0; 00012 wait(0.2); 00013 redled = 0; 00014 greenled = 1; 00015 wait(0.2); 00016 } 00017 } 00018
Generated on Sat Jul 16 2022 03:18:31 by
1.7.2