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 // Ping 00003 // define the Serial object 00004 Serial pc(USBTX, USBRX); 00005 00006 DigitalOut led1(LED1); 00007 00008 int main() { 00009 while (true) { 00010 led1 = !led1; 00011 00012 // Print something over the serial connection 00013 pc.printf("Blink! LED is now %d\r\n", led1.read()); 00014 00015 wait(0.5); 00016 } 00017 }
Generated on Tue Jul 12 2022 18:39:25 by
1.7.2