|
@@ -45,12 +45,16 @@ class Atm_AccelStepper: public Machine {
|
|
|
long int homing_speed = 500;
|
|
|
long int max_speed = 5000;
|
|
|
long int acceleration = 1000;
|
|
|
+ Atm_AccelStepper& setMaxSpeed( long int maxSpeed = 5000);
|
|
|
+ Atm_AccelStepper& setHomingSpeed( long int homingSpeed = 400);
|
|
|
+ Atm_AccelStepper& setAcceleration( long int acc = 1000);
|
|
|
|
|
|
Atm_AccelStepper& move( long int stepRel );
|
|
|
Atm_AccelStepper& moveTo( long int stepAbs );
|
|
|
Atm_AccelStepper& rotate( long int speed );
|
|
|
Atm_AccelStepper& homing( bool direction );
|
|
|
int runMode = 0; // 0 uses run() for positioning, 1 uses runSpeed() for constant speed
|
|
|
+ Atm_AccelStepper& position_refresh( long int refresh_ms = 1000);
|
|
|
|
|
|
Atm_AccelStepper& setEnablePin( int enablePin );
|
|
|
Atm_AccelStepper& enableReversed( bool reverse );
|
|
@@ -67,6 +71,7 @@ class Atm_AccelStepper: public Machine {
|
|
|
bool limitHigh_State;
|
|
|
|
|
|
|
|
|
+
|
|
|
private:
|
|
|
enum { ENT_DISABLED, ENT_ENABLED,ENT_RUNNING, LP_RUNNING, ENT_STOP, LP_STOP, ENT_HOMING_LOW, LP_HOMING_LOW, EXT_HOMING_LOW, ENT_HOMING_HIGH, LP_HOMING_HIGH, EXT_HOMING_HIGH, ENT_LIMIT_LOW, ENT_LIMIT_HIGH }; // ACTIONS
|
|
|
enum { ON_CHANGEPOSITION, ON_CHANGESTATE, ON_ONLIMITHIGH, ON_ONLIMITLOW, ON_ONTARGET, ON_STOP, CONN_MAX }; // CONNECTORS
|
|
@@ -79,6 +84,8 @@ class Atm_AccelStepper: public Machine {
|
|
|
long int _currentStep = 0;
|
|
|
long int _targetStep = 0;
|
|
|
long int _maxStep ;
|
|
|
+ atm_timer_millis position_timer ;
|
|
|
+ int POSITION_SEND_TIMER = 0 ;
|
|
|
|
|
|
int _enablePin = -1;
|
|
|
bool _enableReversed = 0 ;
|