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
Fork of PwmOut_HelloWorld by
main.cpp
00001 /***************************************** 00002 *File:breathing led 00003 *Creator:JacobShi 00004 *Time:2014/10/17 00005 *Description: use the pwm mode to make 00006 *a breathing led. 00007 ******************************************/ 00008 #include "mbed.h" 00009 PwmOut led(LED1); 00010 int main() { 00011 led.period(1); 00012 led.pulsewidth(0.5); 00013 while(1) 00014 { 00015 00016 } 00017 }
Generated on Wed Jul 13 2022 21:30:16 by
1.7.2
