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 A(p21); 00004 DigitalOut B(p22); 00005 DigitalOut C(p23); 00006 DigitalOut D(p24); 00007 DigitalOut E(p25); 00008 00009 int main() { 00010 00011 while(1) { 00012 A=1; 00013 B=0; 00014 C=1; 00015 D=0; 00016 E=0; 00017 wait(0.5); 00018 A=0; 00019 B=1; 00020 C=0; 00021 D=1; 00022 E=1; 00023 wait(0.5); 00024 } 00025 }
Generated on Mon Dec 12 2022 17:31:06 by
1.7.2