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 ctrl(p21); 00004 PwmOut myled(LED1); 00005 00006 int main() { 00007 00008 while(1){ 00009 00010 for(float p = 0.0f; p < 1.0f; p += 0.1f) { 00011 myled = p; //dim led using PWM 00012 ctrl = p; 00013 wait(0.5); //0.1 second time delay-so a human can see it 00014 } 00015 00016 } 00017 00018 }
Generated on Sun Sep 24 2023 11:42:42 by
1.7.2