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.
Stepper.h
00001 #ifndef MBED_STEPPER_H 00002 #define MBED_STEPPER_H 00003 #endif 00004 00005 #include "mbed.h" 00006 00007 class stepper 00008 { 00009 public: 00010 stepper(PinName _en, PinName ms1, PinName ms2, PinName ms3, PinName _stepPin, PinName dir); 00011 void step(int microstep, int dir, float speed); 00012 void enable(); 00013 void disable(); 00014 private: 00015 DigitalOut en; 00016 BusOut microstepping; 00017 DigitalOut stepPin; 00018 DigitalOut direction; 00019 };
Generated on Thu Jul 14 2022 01:11:01 by
1.7.2