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 #include "EthernetInterface.h" 00003 //#include "HTTPServer.h" 00004 //#include "mbed_rpc.h" 00005 00006 DigitalOut myled(LED1); 00007 00008 int main() { 00009 while(1) { 00010 myled = 1; // LED is ON 00011 wait(0.2); // 200 ms 00012 myled = 0; // LED is OFF 00013 wait(1.0); // 1 sec 00014 } 00015 }
Generated on Tue Jul 12 2022 18:51:41 by
1.7.2