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.
pwm.cpp
00001 #include "mbed.h" 00002 00003 DigitalOut gpo(D0); 00004 DigitalOut led(LED_BLUE,1); 00005 PwmOut rojo(PTA2); 00006 //>< 00007 int main() 00008 { 00009 float i; 00010 rojo.period_ms(100); 00011 while(1){ 00012 for (i=1.0f;i>0.0f;i=i-0.0025f){ 00013 rojo.write(i); 00014 wait_ms(25); 00015 } 00016 } 00017 // gpo = !gpo; // toggle pin 00018 // led = !led; // toggle led 00019 // wait(0.2f); 00020 }
Generated on Tue Aug 2 2022 18:23:32 by
1.7.2