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.
Dependencies: mbed
main.cpp
00001 #include "mbed.h" 00002 00003 PwmOut LED_f(D9); 00004 Serial pc(USBTX,USBRX); 00005 00006 int main() { 00007 00008 00009 while(1){ 00010 LED_f = 1; // LED is ON 00011 pc.printf("1"); 00012 wait(1); // 200 ms 00013 LED_f = 0.2; // LED is ON 00014 pc.printf("2"); 00015 wait(0.5); // 1 se 00016 00017 00018 00019 } 00020 }
Generated on Tue Jul 26 2022 21:03:14 by
