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 LED_1(PB_8); 00004 DigitalOut LED_2(PB_9); 00005 00006 00007 00008 int main() 00009 { 00010 while(1) 00011 { 00012 LED_1 = 1; 00013 LED_2 = 1; 00014 wait(0.5); // 500 ms 00015 00016 LED_1 =0; 00017 LED_2 = 0; 00018 00019 wait(0.5); // 500 ms 00020 } 00021 } 00022
Generated on Mon Jul 25 2022 09:52:10 by
1.7.2