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.
MD.cpp
00001 #include"mbed.h" 00002 #include"MD.h" 00003 MD::MD(PinName pwm,PinName dere):Pwm(pwm),Dere(dere) 00004 { 00005 Pwm.period(0.0001); 00006 } 00007 00008 void MD::rotate(double duty) 00009 { 00010 if(duty > 0) 00011 { 00012 Dere = 0; 00013 Pwm = duty; 00014 } 00015 else 00016 { 00017 Dere = 1; 00018 Pwm = -duty; 00019 } 00020 }
Generated on Thu Jul 14 2022 02:15:31 by
1.7.2