|
@@ -24,6 +24,7 @@ Atm_AccelStepper& Atm_AccelStepper::begin(int step_pin, int dir_pin) {
|
|
stepper->setAcceleration(acceleration);
|
|
stepper->setAcceleration(acceleration);
|
|
idle_timer.set(ATM_TIMER_OFF);
|
|
idle_timer.set(ATM_TIMER_OFF);
|
|
position_timer.set(POSITION_SEND_TIMER);
|
|
position_timer.set(POSITION_SEND_TIMER);
|
|
|
|
+
|
|
return *this;
|
|
return *this;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -49,8 +50,6 @@ int Atm_AccelStepper::event( int id ) {
|
|
case EVT_ON_LIMIT_LOW:
|
|
case EVT_ON_LIMIT_LOW:
|
|
switch(_limitLow_Mode) {
|
|
switch(_limitLow_Mode) {
|
|
case 0:
|
|
case 0:
|
|
- //
|
|
|
|
- Serial.println("no limit");
|
|
|
|
return 0;
|
|
return 0;
|
|
case 1: //digital INPUT
|
|
case 1: //digital INPUT
|
|
// Serial.println("digital");
|
|
// Serial.println("digital");
|
|
@@ -62,6 +61,9 @@ int Atm_AccelStepper::event( int id ) {
|
|
int analogTemp = analogRead(_limitLow_Pin);
|
|
int analogTemp = analogRead(_limitLow_Pin);
|
|
limitLow_State = (_limitLow_Thresholds[0] < analogTemp) && (analogTemp < _limitLow_Thresholds[1]);
|
|
limitLow_State = (_limitLow_Thresholds[0] < analogTemp) && (analogTemp < _limitLow_Thresholds[1]);
|
|
limitLow_State = _limitLow_Reversed ? !limitLow_State : limitLow_State;
|
|
limitLow_State = _limitLow_Reversed ? !limitLow_State : limitLow_State;
|
|
|
|
+ if(limitLow_State){analogTemp = analogRead(_limitLow_Pin);
|
|
|
|
+ limitLow_State = (_limitLow_Thresholds[0] < analogTemp) && (analogTemp < _limitLow_Thresholds[1]);
|
|
|
|
+ limitLow_State = _limitLow_Reversed ? !limitLow_State : limitLow_State;}
|
|
return limitLow_State;
|
|
return limitLow_State;
|
|
}
|
|
}
|
|
case EVT_ON_LIMIT_HIGH:
|
|
case EVT_ON_LIMIT_HIGH:
|
|
@@ -120,6 +122,7 @@ void Atm_AccelStepper::action( int id ) {
|
|
case ENT_RUNNING:
|
|
case ENT_RUNNING:
|
|
push(connectors, ON_CHANGESTATE, 0, state(), 0);
|
|
push(connectors, ON_CHANGESTATE, 0, state(), 0);
|
|
_isHoming = 0;
|
|
_isHoming = 0;
|
|
|
|
+ stepper->moveTo(_targetStep);
|
|
//push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
|
|
//push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
|
|
position_timer.setFromNow(this, POSITION_SEND_TIMER);
|
|
position_timer.setFromNow(this, POSITION_SEND_TIMER);
|
|
return;
|
|
return;
|
|
@@ -156,6 +159,9 @@ void Atm_AccelStepper::action( int id ) {
|
|
stepper_update();
|
|
stepper_update();
|
|
return;
|
|
return;
|
|
case EXT_HOMING_LOW:
|
|
case EXT_HOMING_LOW:
|
|
|
|
+ runMode = 0;
|
|
|
|
+ _isHoming = 0;
|
|
|
|
+ trigger(EVT_EMERGENCY_STOP);
|
|
if(last_trigger == EVT_ON_LIMIT_LOW) {
|
|
if(last_trigger == EVT_ON_LIMIT_LOW) {
|
|
stepper->setCurrentPosition(0);
|
|
stepper->setCurrentPosition(0);
|
|
_currentStep = 0;
|
|
_currentStep = 0;
|
|
@@ -175,6 +181,9 @@ void Atm_AccelStepper::action( int id ) {
|
|
stepper_update();
|
|
stepper_update();
|
|
return;
|
|
return;
|
|
case EXT_HOMING_HIGH:
|
|
case EXT_HOMING_HIGH:
|
|
|
|
+ runMode = 0;
|
|
|
|
+ _isHoming = 0;
|
|
|
|
+ trigger(EVT_EMERGENCY_STOP);
|
|
if(last_trigger == EVT_ON_LIMIT_HIGH) {
|
|
if(last_trigger == EVT_ON_LIMIT_HIGH) {
|
|
_maxStep = stepper->currentPosition();
|
|
_maxStep = stepper->currentPosition();
|
|
_currentStep = _maxStep;
|
|
_currentStep = _maxStep;
|
|
@@ -186,8 +195,8 @@ void Atm_AccelStepper::action( int id ) {
|
|
case ENT_LIMIT_LOW:
|
|
case ENT_LIMIT_LOW:
|
|
push( connectors, ON_ONLIMITLOW, 0, 0, 0 );
|
|
push( connectors, ON_ONLIMITLOW, 0, 0, 0 );
|
|
//stop motor if going down, allow going up
|
|
//stop motor if going down, allow going up
|
|
- if(_limitLow_Hard && (stepper->speed()<0) ) {trigger(EVT_EMERGENCY_STOP);}
|
|
|
|
- else{ stepper_update(); _isHoming ? trigger(EVT_ENABLE):trigger(EVT_MOVE);}
|
|
|
|
|
|
+ if(_limitLow_Hard && (stepper->speed()<=0) ) {trigger(EVT_EMERGENCY_STOP);}
|
|
|
|
+ else{ stepper_update();trigger(EVT_MOVE);} // _isHoming ? trigger(EVT_STOP):
|
|
// switch(_isHoming) {
|
|
// switch(_isHoming) {
|
|
// case 0 :
|
|
// case 0 :
|
|
// trigger(EVT_MOVE);
|
|
// trigger(EVT_MOVE);
|
|
@@ -203,8 +212,8 @@ void Atm_AccelStepper::action( int id ) {
|
|
return;
|
|
return;
|
|
case ENT_LIMIT_HIGH:
|
|
case ENT_LIMIT_HIGH:
|
|
push( connectors, ON_ONLIMITHIGH, 0, 1, 0 );
|
|
push( connectors, ON_ONLIMITHIGH, 0, 1, 0 );
|
|
- if(_limitHigh_Hard && (stepper->speed()>0)) {trigger(EVT_EMERGENCY_STOP);}
|
|
|
|
- else{ stepper_update(); _isHoming ? trigger(EVT_ENABLE):trigger(EVT_MOVE);}
|
|
|
|
|
|
+ if(_limitHigh_Hard && (stepper->speed()>=0)) {trigger(EVT_EMERGENCY_STOP);}
|
|
|
|
+ else{ stepper_update(); trigger(EVT_MOVE);} //_isHoming ? trigger(EVT_STOP):
|
|
// stepper_update();
|
|
// stepper_update();
|
|
// switch(_isHoming) {
|
|
// switch(_isHoming) {
|
|
// case 0 :
|
|
// case 0 :
|
|
@@ -248,6 +257,7 @@ int Atm_AccelStepper::state( void ) {
|
|
|
|
|
|
void Atm_AccelStepper::stepper_update(void) {
|
|
void Atm_AccelStepper::stepper_update(void) {
|
|
switch (runMode) {
|
|
switch (runMode) {
|
|
|
|
+ Serial.println(stepper->currentPosition());
|
|
case 0: //positional modae
|
|
case 0: //positional modae
|
|
stepper->run();
|
|
stepper->run();
|
|
break;
|
|
break;
|
|
@@ -260,6 +270,7 @@ void Atm_AccelStepper::stepper_update(void) {
|
|
_currentStep = tempStep;
|
|
_currentStep = tempStep;
|
|
if (position_timer.expired(this)){
|
|
if (position_timer.expired(this)){
|
|
push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
|
|
push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
|
|
|
|
+ //Serial.println(stepper->currentPosition());
|
|
position_timer.setFromNow(this, POSITION_SEND_TIMER);
|
|
position_timer.setFromNow(this, POSITION_SEND_TIMER);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -278,10 +289,20 @@ Atm_AccelStepper& Atm_AccelStepper::setHomingSpeed(long int homingSpeed){
|
|
|
|
|
|
Atm_AccelStepper& Atm_AccelStepper::setAcceleration(long int acc){
|
|
Atm_AccelStepper& Atm_AccelStepper::setAcceleration(long int acc){
|
|
acceleration = acc ;
|
|
acceleration = acc ;
|
|
- stepper->setAcceleration(max_speed);
|
|
|
|
|
|
+ stepper->setAcceleration(acceleration);
|
|
return *this ;
|
|
return *this ;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+Atm_AccelStepper& Atm_AccelStepper::setPosition(long int position){
|
|
|
|
+ stepper->setCurrentPosition(position);
|
|
|
|
+ _currentStep = position ;
|
|
|
|
+ return *this ;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+long int Atm_AccelStepper::getPosition(){
|
|
|
|
+ return stepper->currentPosition();;
|
|
|
|
+}
|
|
|
|
+
|
|
Atm_AccelStepper& Atm_AccelStepper::position_refresh(long int refresh_ms){
|
|
Atm_AccelStepper& Atm_AccelStepper::position_refresh(long int refresh_ms){
|
|
POSITION_SEND_TIMER = refresh_ms ;
|
|
POSITION_SEND_TIMER = refresh_ms ;
|
|
return *this ;
|
|
return *this ;
|