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: StepperMotor mbed
main.cpp
00001 #include "mbed.h" 00002 #include "Stepper.h" 00003 00004 #define WAIT_TIME 0.02 00005 00006 // stepper(PinName _en, PinName ms1, PinName ms2, PinName ms3, PinName _stepPin, PinName dir); 00007 stepper s(D9, D4, D5, D6, D7, D8); 00008 00009 int main() 00010 { 00011 s.enable(); 00012 while (1) 00013 { 00014 s.step(1, 1, 1/WAIT_TIME); 00015 // wait(0.02); 00016 } 00017 }
Generated on Tue Jul 19 2022 02:42:41 by
1.7.2