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 PwmOut dimmer(p25); 00003 00004 int main() { 00005 00006 dimmer.period(0.02); 00007 00008 while(1) { 00009 dimmer=0; 00010 wait(0.5); 00011 dimmer=0.2; 00012 wait(0.5); 00013 dimmer=0.4; 00014 wait(0.5); 00015 dimmer=0.6; 00016 wait(0.5); 00017 dimmer=0.8; 00018 wait(0.5); 00019 dimmer=1; 00020 wait(0.5); 00021 } 00022 00023 00024 }
Generated on Thu Jul 14 2022 12:10:47 by
1.7.2