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 PwmOut led1(LED1); 00004 PwmOut led2(LED2); 00005 00006 int main() { 00007 while (1) { 00008 for (float p = 0.01f; p < 0.99f; p += 0.01f) { 00009 led1 = p; 00010 led2 = p; 00011 wait(0.01); 00012 } 00013 for (float p = 0.99f; p > 0.01f; p -= 0.01f) { 00014 led1 = p; 00015 led2 = p; 00016 wait(0.01); 00017 } 00018 } 00019 }
Generated on Wed Jul 13 2022 14:21:19 by
1.7.2