|
@@ -401,6 +401,7 @@ void Atm_AccelStepper::stepper_update(void) {
|
|
|
break;
|
|
|
}
|
|
|
_currentSpeed = stepper->speed();
|
|
|
+ if (_currentSpeed) {direction = _currentSpeed>0 ? 1 : 0;}
|
|
|
long int tempStep = stepper->currentPosition();
|
|
|
if (tempStep != _currentStep){
|
|
|
_currentStep = tempStep;
|
|
@@ -440,6 +441,31 @@ Atm_AccelStepper& Atm_AccelStepper::setPosition(long int position){
|
|
|
return *this ;
|
|
|
}
|
|
|
|
|
|
+Atm_AccelStepper& Atm_AccelStepper::setPlayCompensation(long int steps){
|
|
|
+ playSteps = steps ;
|
|
|
+}
|
|
|
+
|
|
|
+bool Atm_AccelStepper::compensatePlay(){ //check if there is a change in direction,
|
|
|
+//use just after _targetStep update and before moving
|
|
|
+ bool newDirection ;
|
|
|
+ switch (runMode) {
|
|
|
+ case 0: //positional modae
|
|
|
+ newDirection = _targetStep > _currentStep;
|
|
|
+ break;
|
|
|
+ case 1: // speed mode
|
|
|
+ newDirection = stepper->speed()>0;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ if (direction != newDirection){
|
|
|
+ long int compensation = newDirection ? -playSteps : playSteps ;
|
|
|
+ setPosition(_currentStep + compensation);
|
|
|
+ Serial.print("play compensation ");
|
|
|
+ Serial.println(_currentStep);
|
|
|
+ return 1;
|
|
|
+ }
|
|
|
+ else{return 0;}
|
|
|
+}
|
|
|
+
|
|
|
long int Atm_AccelStepper::getPosition(){
|
|
|
return stepper->currentPosition();;
|
|
|
}
|
|
@@ -464,6 +490,7 @@ Atm_AccelStepper& Atm_AccelStepper::position_refresh(long int refresh_ms){
|
|
|
|
|
|
Atm_AccelStepper& Atm_AccelStepper::move( long int stepRel) {
|
|
|
_targetStep = _currentStep + stepRel;
|
|
|
+ compensatePlay();
|
|
|
runMode = 0;
|
|
|
// _isHoming = 0;
|
|
|
//Serial.println(_targetStep);
|
|
@@ -475,6 +502,7 @@ Atm_AccelStepper& Atm_AccelStepper::move( long int stepRel) {
|
|
|
|
|
|
Atm_AccelStepper& Atm_AccelStepper::moveTo( long int stepAbs) {
|
|
|
_targetStep = stepAbs;
|
|
|
+ compensatePlay();
|
|
|
// _isHoming = 0 ;
|
|
|
runMode = 0;
|
|
|
stepper->moveTo(_targetStep);
|
|
@@ -487,6 +515,7 @@ Atm_AccelStepper& Atm_AccelStepper::movePercent( float percent) {
|
|
|
// Serial.println(percent/100.)
|
|
|
|
|
|
_targetStep = (float)_currentStep + percent/100.*float(_maxStep);
|
|
|
+ compensatePlay();
|
|
|
runMode = 0;
|
|
|
// _isHoming = 0;
|
|
|
Serial.println(_targetStep);
|
|
@@ -498,6 +527,7 @@ Atm_AccelStepper& Atm_AccelStepper::movePercent( float percent) {
|
|
|
|
|
|
Atm_AccelStepper& Atm_AccelStepper::moveToPercent( float percent) {
|
|
|
_targetStep = (float) percent/100*float(_maxStep) ;
|
|
|
+ compensatePlay();
|
|
|
// _isHoming = 0
|
|
|
runMode = 0;
|
|
|
stepper->moveTo(_targetStep);
|
|
@@ -510,16 +540,17 @@ Atm_AccelStepper& Atm_AccelStepper::rotate( long int speed) {
|
|
|
runMode = 1;
|
|
|
// _isHoming = 0 ;
|
|
|
stepper->setSpeed( speed);
|
|
|
- stepper->runSpeed();
|
|
|
+ compensatePlay();
|
|
|
+ //stepper->runSpeed();
|
|
|
enable();
|
|
|
trigger( EVT_MOVE );
|
|
|
return *this;
|
|
|
}
|
|
|
|
|
|
-Atm_AccelStepper& Atm_AccelStepper::homing( bool direction ){
|
|
|
+Atm_AccelStepper& Atm_AccelStepper::homing( bool homingDirection ){
|
|
|
enable();
|
|
|
// direction == 1 ? _isHoming = 2 : _isHoming = 1;
|
|
|
- direction == 1 ? this->trigger(EVT_HOMING_HIGH) : this->trigger(EVT_HOMING_LOW);
|
|
|
+ homingDirection == 1 ? this->trigger(EVT_HOMING_HIGH) : this->trigger(EVT_HOMING_LOW);
|
|
|
|
|
|
return *this;
|
|
|
}
|