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 /* led on/off. Connected anode LED to pin 8(PTA1 or D3)and cathode to ground (pin 14) of the board FRDM-K64F with a resistor of 330ohms.*/ 00003 00004 DigitalOut led(D3); 00005 00006 int main() 00007 { 00008 while (true) { 00009 led=1; 00010 wait(0.2); 00011 led=0; 00012 wait(0.2); 00013 } 00014 }
Generated on Fri Aug 26 2022 22:30:05 by
1.7.2