|
@@ -12,8 +12,8 @@ Atm_AccelStepper& Atm_AccelStepper::begin(int step_pin, int dir_pin) {
|
|
/* ENABLED */ ENT_ENABLED, -1, -1, DISABLE, -1, DISABLE, RUNNING, STOP, STOP, -1, -1, -1, HOMING_LOW, HOMING_HIGH, -1,
|
|
/* ENABLED */ ENT_ENABLED, -1, -1, DISABLE, -1, DISABLE, RUNNING, STOP, STOP, -1, -1, -1, HOMING_LOW, HOMING_HIGH, -1,
|
|
/* RUNNING */ ENT_RUNNING, LP_RUNNING, -1, DISABLE, -1, -1, RUNNING, STOP, STOP, LIMIT_LOW, LIMIT_HIGH, ENABLED, -1, -1, -1,
|
|
/* RUNNING */ ENT_RUNNING, LP_RUNNING, -1, DISABLE, -1, -1, RUNNING, STOP, STOP, LIMIT_LOW, LIMIT_HIGH, ENABLED, -1, -1, -1,
|
|
/* STOP */ ENT_STOP, LP_STOP, -1, DISABLE, -1, -1, RUNNING, -1, -1, -1, -1, ENABLED, -1, -1, -1,
|
|
/* STOP */ ENT_STOP, LP_STOP, -1, DISABLE, -1, -1, RUNNING, -1, -1, -1, -1, ENABLED, -1, -1, -1,
|
|
- /* HOMING_LOW */ ENT_HOMING_LOW, LP_HOMING_LOW, EXT_HOMING_LOW, DISABLE, -1, -1, -1, STOP, STOP, LIMIT_LOW, LIMIT_HIGH, -1, -1, -1, -1,
|
|
|
|
- /* HOMING_HIGH */ ENT_HOMING_HIGH, LP_HOMING_HIGH, EXT_HOMING_HIGH, DISABLE, -1, -1, -1, STOP, STOP, LIMIT_LOW, LIMIT_HIGH, -1, -1, -1, -1,
|
|
|
|
|
|
+ /* HOMING_LOW */ ENT_HOMING_LOW, LP_HOMING_LOW, EXT_HOMING_LOW, DISABLE, -1, -1, -1, STOP, STOP, ENABLED, ENABLED, -1, -1, -1, -1,
|
|
|
|
+ /* HOMING_HIGH */ ENT_HOMING_HIGH, LP_HOMING_HIGH, EXT_HOMING_HIGH, DISABLE, -1, -1, -1, STOP, STOP, ENABLED, ENABLED, -1, -1, -1, -1,
|
|
/* LIMIT_LOW */ ENT_LIMIT_LOW, LP_LIMIT_LOW, -1, -1, -1, -1, RUNNING, STOP, STOP, LIMIT_LOW, -1, -1, -1, -1, -1,
|
|
/* LIMIT_LOW */ ENT_LIMIT_LOW, LP_LIMIT_LOW, -1, -1, -1, -1, RUNNING, STOP, STOP, LIMIT_LOW, -1, -1, -1, -1, -1,
|
|
/* LIMIT_HIGH */ ENT_LIMIT_HIGH, LP_LIMIT_HIGH, -1, -1, -1, -1, RUNNING, STOP, STOP, -1, LIMIT_HIGH, -1, -1, -1, -1
|
|
/* LIMIT_HIGH */ ENT_LIMIT_HIGH, LP_LIMIT_HIGH, -1, -1, -1, -1, RUNNING, STOP, STOP, -1, LIMIT_HIGH, -1, -1, -1, -1
|
|
};
|
|
};
|
|
@@ -166,7 +166,7 @@ void Atm_AccelStepper::action( int id ) {
|
|
push(connectors, ON_CHANGESTATE, 0, state(), 0);
|
|
push(connectors, ON_CHANGESTATE, 0, state(), 0);
|
|
push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
|
|
push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
|
|
if (last_trigger == EVT_STOP) {
|
|
if (last_trigger == EVT_STOP) {
|
|
- // runMode = 0 ;
|
|
|
|
|
|
+ runMode = 0 ;
|
|
stepper->stop();
|
|
stepper->stop();
|
|
_targetStep = stepper->targetPosition();
|
|
_targetStep = stepper->targetPosition();
|
|
push( connectors, ON_STOP, 0, 0, 0 );
|
|
push( connectors, ON_STOP, 0, 0, 0 );
|
|
@@ -186,10 +186,11 @@ void Atm_AccelStepper::action( int id ) {
|
|
// _currentStep = stepper->currentPosition();
|
|
// _currentStep = stepper->currentPosition();
|
|
return;
|
|
return;
|
|
case ENT_HOMING_LOW:
|
|
case ENT_HOMING_LOW:
|
|
|
|
+ homingLow_done = 0;
|
|
push(connectors, ON_CHANGESTATE, 0, state(), 0);
|
|
push(connectors, ON_CHANGESTATE, 0, state(), 0);
|
|
push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
|
|
push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
|
|
runMode = 1;
|
|
runMode = 1;
|
|
- _isHoming = 1 ;
|
|
|
|
|
|
+ //_isHoming = 1 ;
|
|
stepper->setSpeed(-1*homing_speed);
|
|
stepper->setSpeed(-1*homing_speed);
|
|
return;
|
|
return;
|
|
case LP_HOMING_LOW:
|
|
case LP_HOMING_LOW:
|
|
@@ -198,23 +199,22 @@ void Atm_AccelStepper::action( int id ) {
|
|
return;
|
|
return;
|
|
case EXT_HOMING_LOW:
|
|
case EXT_HOMING_LOW:
|
|
runMode = 0;
|
|
runMode = 0;
|
|
- _isHoming = 0;
|
|
|
|
- push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
|
|
|
|
|
|
+ //_isHoming = 0;
|
|
if(last_trigger == EVT_ON_LIMIT_LOW) {
|
|
if(last_trigger == EVT_ON_LIMIT_LOW) {
|
|
stepper->setCurrentPosition(0);
|
|
stepper->setCurrentPosition(0);
|
|
_currentStep = 0;
|
|
_currentStep = 0;
|
|
- push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
|
|
|
|
- // Serial.println("homing low done");
|
|
|
|
|
|
+ homingLow_done = 1 ;
|
|
}
|
|
}
|
|
- else{};//Serial.println("homing low failed");}
|
|
|
|
|
|
+ else{homingLow_done = 0 ;};//Serial.println("homing low failed");}
|
|
|
|
+ push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
|
|
|
|
+ push(connectors, ON_ONHOMINGLOW, 0, _currentStep, homingLow_done);
|
|
trigger(EVT_EMERGENCY_STOP);
|
|
trigger(EVT_EMERGENCY_STOP);
|
|
-
|
|
|
|
return;
|
|
return;
|
|
case ENT_HOMING_HIGH:
|
|
case ENT_HOMING_HIGH:
|
|
push(connectors, ON_CHANGESTATE, 0, state(), 0);
|
|
push(connectors, ON_CHANGESTATE, 0, state(), 0);
|
|
push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
|
|
push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
|
|
runMode = 1;
|
|
runMode = 1;
|
|
- _isHoming = 2 ;
|
|
|
|
|
|
+ //_isHoming = 2 ;
|
|
stepper->setSpeed(homing_speed);
|
|
stepper->setSpeed(homing_speed);
|
|
return;
|
|
return;
|
|
case LP_HOMING_HIGH:
|
|
case LP_HOMING_HIGH:
|
|
@@ -222,17 +222,21 @@ void Atm_AccelStepper::action( int id ) {
|
|
push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
|
|
push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
|
|
return;
|
|
return;
|
|
case EXT_HOMING_HIGH:
|
|
case EXT_HOMING_HIGH:
|
|
- push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
|
|
|
|
|
|
+
|
|
runMode = 0;
|
|
runMode = 0;
|
|
- _isHoming = 0;
|
|
|
|
- trigger(EVT_EMERGENCY_STOP);
|
|
|
|
|
|
+ //_isHoming = 0;
|
|
if(last_trigger == EVT_ON_LIMIT_HIGH) {
|
|
if(last_trigger == EVT_ON_LIMIT_HIGH) {
|
|
_maxStep = stepper->currentPosition();
|
|
_maxStep = stepper->currentPosition();
|
|
_currentStep = _maxStep;
|
|
_currentStep = _maxStep;
|
|
|
|
+
|
|
|
|
+ homingHigh_done = 1;
|
|
//Serial.println("homing high done");
|
|
//Serial.println("homing high done");
|
|
}
|
|
}
|
|
- else{};//Serial.println("homing high failed");}
|
|
|
|
- _targetStep = _currentStep;
|
|
|
|
|
|
+ else{homingHigh_done = 0;};//Serial.println("homing high failed");}
|
|
|
|
+ push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
|
|
|
|
+ //_targetStep = _currentStep;
|
|
|
|
+ push(connectors, ON_ONHOMINGHIGH, 0, _currentStep, homingHigh_done);
|
|
|
|
+ trigger(EVT_EMERGENCY_STOP);
|
|
return;
|
|
return;
|
|
case ENT_LIMIT_LOW:
|
|
case ENT_LIMIT_LOW:
|
|
/*triggered by a change in limit state
|
|
/*triggered by a change in limit state
|
|
@@ -598,22 +602,22 @@ Atm_AccelStepper& Atm_AccelStepper::onStop( atm_cb_push_t callback, int idx ) {
|
|
}
|
|
}
|
|
|
|
|
|
Atm_AccelStepper& Atm_AccelStepper::onOnhominglow( Machine& machine, int event ) {
|
|
Atm_AccelStepper& Atm_AccelStepper::onOnhominglow( Machine& machine, int event ) {
|
|
- onPush( connectors, ON_ONTARGET, 0, 1, 1, machine, event );
|
|
|
|
|
|
+ onPush( connectors, ON_ONHOMINGLOW, 0, 1, 1, machine, event );
|
|
return *this;
|
|
return *this;
|
|
}
|
|
}
|
|
|
|
|
|
Atm_AccelStepper& Atm_AccelStepper::onOnhominglow( atm_cb_push_t callback, int idx ) {
|
|
Atm_AccelStepper& Atm_AccelStepper::onOnhominglow( atm_cb_push_t callback, int idx ) {
|
|
- onPush( connectors, ON_ONTARGET, 0, 1, 1, callback, idx );
|
|
|
|
|
|
+ onPush( connectors, ON_ONHOMINGLOW, 0, 1, 1, callback, idx );
|
|
return *this;
|
|
return *this;
|
|
}
|
|
}
|
|
|
|
|
|
Atm_AccelStepper& Atm_AccelStepper::onOnhominghigh( Machine& machine, int event ) {
|
|
Atm_AccelStepper& Atm_AccelStepper::onOnhominghigh( Machine& machine, int event ) {
|
|
- onPush( connectors, ON_ONTARGET, 0, 1, 1, machine, event );
|
|
|
|
|
|
+ onPush( connectors, ON_ONHOMINGHIGH, 0, 1, 1, machine, event );
|
|
return *this;
|
|
return *this;
|
|
}
|
|
}
|
|
|
|
|
|
Atm_AccelStepper& Atm_AccelStepper::onOnhominghigh( atm_cb_push_t callback, int idx ) {
|
|
Atm_AccelStepper& Atm_AccelStepper::onOnhominghigh( atm_cb_push_t callback, int idx ) {
|
|
- onPush( connectors, ON_ONTARGET, 0, 1, 1, callback, idx );
|
|
|
|
|
|
+ onPush( connectors, ON_ONHOMINGHIGH, 0, 1, 1, callback, idx );
|
|
return *this;
|
|
return *this;
|
|
}
|
|
}
|
|
|
|
|