Atm_AccelStepper.cpp 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564
  1. #include "Atm_AccelStepper.h"
  2. /* Add optional parameters for the state machine to begin()
  3. * Add extra initialization code
  4. */
  5. Atm_AccelStepper& Atm_AccelStepper::begin(int step_pin, int dir_pin) {
  6. // clang-format off
  7. const static state_t state_table[] PROGMEM = {
  8. /* ON_ENTER ON_LOOP ON_EXIT EVT_DISABLE EVT_ENABLE EVT_ENABLED_TIMEOUT EVT_MOVE EVT_STOP EVT_EMERGENCY_STOP EVT_ON_LIMIT_LOW EVT_ON_LIMIT_HIGH EVT_ON_TARGET EVT_HOMING_LOW EVT_HOMING_HIGH ELSE */
  9. /* DISABLE */ ENT_DISABLED, -1, -1, -1, ENABLED, -1, RUNNING, -1, -1, -1, -1, -1, HOMING_LOW, HOMING_HIGH, -1,
  10. /* ENABLED */ ENT_ENABLED, -1, -1, DISABLE, -1, DISABLE, RUNNING, STOP, STOP, LIMIT_LOW, LIMIT_HIGH, -1, HOMING_LOW, HOMING_HIGH, -1,
  11. /* RUNNING */ ENT_RUNNING, LP_RUNNING, -1, DISABLE, -1, -1, RUNNING, STOP, STOP, LIMIT_LOW, LIMIT_HIGH, ENABLED, -1, -1, -1,
  12. /* STOP */ ENT_STOP, LP_STOP, -1, DISABLE, -1, -1, RUNNING, -1, -1, -1, -1, ENABLED, -1, -1, -1,
  13. /* 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,
  14. /* 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,
  15. /* LIMIT_LOW */ ENT_LIMIT_LOW, -1, -1, -1, -1, -1, RUNNING, STOP, STOP, LIMIT_LOW, -1, -1, -1, -1, -1,
  16. /* LIMIT_HIGH */ ENT_LIMIT_HIGH, -1, -1, -1, -1, -1, RUNNING, STOP, STOP, -1, LIMIT_HIGH, -1, -1, -1, -1
  17. };
  18. // clang-format on
  19. Machine::begin( state_table, ELSE );
  20. stepper = new AccelStepper(1, step_pin, dir_pin);
  21. stepper->setMaxSpeed(max_speed);
  22. stepper->setAcceleration(acceleration);
  23. idle_timer.set(ATM_TIMER_OFF);
  24. position_timer.set(POSITION_SEND_TIMER);
  25. return *this;
  26. }
  27. /* Add C++ code for each internally handled event (input)
  28. * The code must return 1 to trigger the event
  29. */
  30. int Atm_AccelStepper::event( int id ) {
  31. //updateLimitSwitch();
  32. switch ( id ) {
  33. case EVT_DISABLE:
  34. return 0;
  35. case EVT_ENABLE:
  36. return 0;
  37. case EVT_ENABLED_TIMEOUT:
  38. return 0;
  39. case EVT_MOVE:
  40. return 0;
  41. case EVT_STOP:
  42. return 0;
  43. case EVT_EMERGENCY_STOP:
  44. return 0;
  45. case EVT_ON_LIMIT_LOW:
  46. switch(_limitLow_Mode) {
  47. case 0:
  48. return 0;
  49. case 1: //digital INPUT
  50. // Serial.println("digital");
  51. limitLow_State = digitalRead(_limitLow_Pin);
  52. limitLow_State = _limitLow_Reversed ? !limitLow_State : limitLow_State;
  53. return limitLow_State;
  54. case 2:
  55. int analogTemp = analogRead(_limitLow_Pin);
  56. limitLow_State = (_limitLow_Thresholds[0] < analogTemp) && (analogTemp < _limitLow_Thresholds[1]);
  57. limitLow_State = _limitLow_Reversed ? !limitLow_State : limitLow_State;
  58. if(limitLow_State){analogTemp = analogRead(_limitLow_Pin);
  59. limitLow_State = (_limitLow_Thresholds[0] < analogTemp) && (analogTemp < _limitLow_Thresholds[1]);
  60. limitLow_State = _limitLow_Reversed ? !limitLow_State : limitLow_State;}
  61. return limitLow_State;
  62. }
  63. case EVT_ON_LIMIT_HIGH:
  64. switch(_limitHigh_Mode) {
  65. case 0:
  66. return 0;
  67. case 1: //digital INPUT
  68. limitHigh_State = digitalRead(_limitHigh_Pin);
  69. limitHigh_State = _limitHigh_Reversed ? !limitHigh_State : limitHigh_State;
  70. return limitHigh_State;
  71. case 2:
  72. //Serial.println("analog");
  73. int analogTemp = analogRead(_limitHigh_Pin);
  74. limitHigh_State = (_limitHigh_Thresholds[0] < analogTemp) && (analogTemp < _limitHigh_Thresholds[1]);
  75. limitHigh_State = _limitHigh_Reversed ? !limitHigh_State : limitHigh_State;
  76. return limitHigh_State;
  77. }
  78. case EVT_ON_TARGET:
  79. return runMode ? 0 : _currentStep == _targetStep;
  80. case EVT_HOMING_LOW:
  81. return 0;
  82. case EVT_HOMING_HIGH:
  83. return 0;
  84. }
  85. return 0;
  86. }
  87. /* Add C++ code for each action
  88. * This generates the 'output' for the state machine
  89. *
  90. * Available connectors:
  91. * push( connectors, ON_CHANGEPOSITION, 0, <v>, <up> );
  92. * push( connectors, ON_CHANGESTATE, 0, <v>, <up> );
  93. * push( connectors, ON_ONLIMITHIGH, 0, <v>, <up> );
  94. * push( connectors, ON_ONLIMITLOW, 0, <v>, <up> );
  95. * push( connectors, ON_ONTARGET, 0, <v>, <up> );
  96. * push( connectors, ON_STOP, 0, <v>, <up> );
  97. */
  98. void Atm_AccelStepper::action( int id ) {
  99. switch ( id ) {
  100. case ENT_DISABLED:
  101. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  102. enabled = _enableReversed ? HIGH : LOW;
  103. digitalWrite(_enablePin, enabled);
  104. return;
  105. case ENT_ENABLED:
  106. _isHoming = 0 ;
  107. if(last_trigger == EVT_ON_TARGET){push( connectors, ON_ONTARGET, 0, _currentStep, 0 );};
  108. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  109. enabled = _enableReversed ? LOW : HIGH ;
  110. digitalWrite(_enablePin, enabled);
  111. return;
  112. case ENT_RUNNING:
  113. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  114. _isHoming = 0;
  115. stepper->moveTo(_targetStep);
  116. //push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
  117. position_timer.setFromNow(this, POSITION_SEND_TIMER);
  118. return;
  119. case LP_RUNNING:
  120. stepper_update();
  121. return;
  122. case ENT_STOP:
  123. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  124. if (last_trigger == EVT_STOP) {
  125. runMode = 0 ;
  126. stepper->stop();
  127. _targetStep = stepper->targetPosition();
  128. push( connectors, ON_STOP, 0, 0, 0 );
  129. }
  130. if (last_trigger == EVT_EMERGENCY_STOP) {
  131. _currentStep = stepper->currentPosition();
  132. _targetStep = _currentStep ;
  133. stepper->moveTo(_targetStep);
  134. stepper->setSpeed(0);
  135. push( connectors, ON_STOP, 0, 1, 0 );
  136. }
  137. return;
  138. case LP_STOP:
  139. stepper_update();
  140. _currentStep = stepper->currentPosition();
  141. return;
  142. case ENT_HOMING_LOW:
  143. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  144. runMode = 1;
  145. _isHoming = 1 ;
  146. stepper->setSpeed(-1*homing_speed);
  147. return;
  148. case LP_HOMING_LOW:
  149. stepper_update();
  150. return;
  151. case EXT_HOMING_LOW:
  152. runMode = 0;
  153. _isHoming = 0;
  154. trigger(EVT_EMERGENCY_STOP);
  155. if(last_trigger == EVT_ON_LIMIT_LOW) {
  156. stepper->setCurrentPosition(0);
  157. _currentStep = 0;
  158. Serial.println("homing low done");
  159. }
  160. else{Serial.println("homing low failed");}
  161. _targetStep = _currentStep;
  162. return;
  163. case ENT_HOMING_HIGH:
  164. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  165. runMode = 1;
  166. _isHoming = 2 ;
  167. stepper->setSpeed(homing_speed);
  168. return;
  169. case LP_HOMING_HIGH:
  170. stepper_update();
  171. return;
  172. case EXT_HOMING_HIGH:
  173. runMode = 0;
  174. _isHoming = 0;
  175. trigger(EVT_EMERGENCY_STOP);
  176. if(last_trigger == EVT_ON_LIMIT_HIGH) {
  177. _maxStep = stepper->currentPosition();
  178. _currentStep = _maxStep;
  179. Serial.println("homing high done");
  180. }
  181. else{Serial.println("homing high failed");}
  182. _targetStep = _currentStep;
  183. return;
  184. case ENT_LIMIT_LOW:
  185. push( connectors, ON_ONLIMITLOW, 0, 0, 0 );
  186. //stop motor if going down, allow going up
  187. if(_limitLow_Hard && (stepper->speed()<=0) ) {trigger(EVT_EMERGENCY_STOP);}
  188. else{ stepper_update();trigger(EVT_MOVE);} // _isHoming ? trigger(EVT_STOP):
  189. // switch(_isHoming) {
  190. // case 0 :
  191. // trigger(EVT_MOVE);
  192. // break;
  193. // case 1 :
  194. // trigger(EVT_HOMING_LOW);
  195. // break;
  196. // case 2 :
  197. // trigger(EVT_HOMING_HIGH);
  198. // break;
  199. // }
  200. // }
  201. return;
  202. case ENT_LIMIT_HIGH:
  203. push( connectors, ON_ONLIMITHIGH, 0, 1, 0 );
  204. if(_limitHigh_Hard && (stepper->speed()>=0)) {trigger(EVT_EMERGENCY_STOP);}
  205. else{ stepper_update(); trigger(EVT_MOVE);} //_isHoming ? trigger(EVT_STOP):
  206. // stepper_update();
  207. // switch(_isHoming) {
  208. // case 0 :
  209. // trigger(EVT_MOVE);
  210. // break;
  211. // case 1 :
  212. // trigger(EVT_HOMING_HIGH);
  213. // break;
  214. // case 2 :
  215. // trigger(EVT_HOMING_HIGH);
  216. // break;
  217. // }
  218. // }
  219. return;
  220. }
  221. }
  222. /* Optionally override the default trigger() method
  223. * Control how your machine processes triggers
  224. */
  225. Atm_AccelStepper& Atm_AccelStepper::trigger( int event ) {
  226. Machine::trigger( event );
  227. return *this;
  228. }
  229. /* Optionally override the default state() method
  230. * Control what the machine returns when another process requests its state
  231. */
  232. int Atm_AccelStepper::state( void ) {
  233. return Machine::state();
  234. }
  235. /* Nothing customizable below this line
  236. ************************************************************************************************
  237. */
  238. /* Still I'll customize a little just here
  239. */
  240. void Atm_AccelStepper::stepper_update(void) {
  241. switch (runMode) {
  242. Serial.println(stepper->currentPosition());
  243. case 0: //positional modae
  244. stepper->run();
  245. break;
  246. case 1: // speed mode
  247. stepper->runSpeed();
  248. break;
  249. }
  250. long int tempStep = stepper->currentPosition();
  251. if (tempStep != _currentStep){
  252. _currentStep = tempStep;
  253. if (position_timer.expired(this)){
  254. push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
  255. //Serial.println(stepper->currentPosition());
  256. position_timer.setFromNow(this, POSITION_SEND_TIMER);
  257. }
  258. }
  259. }
  260. Atm_AccelStepper& Atm_AccelStepper::setMaxSpeed( long int maxSpeed){
  261. max_speed = maxSpeed ;
  262. stepper->setMaxSpeed(max_speed);
  263. return *this ;
  264. }
  265. Atm_AccelStepper& Atm_AccelStepper::setHomingSpeed(long int homingSpeed){
  266. homing_speed = homingSpeed ;
  267. return *this ;
  268. }
  269. Atm_AccelStepper& Atm_AccelStepper::setAcceleration(long int acc){
  270. acceleration = acc ;
  271. stepper->setAcceleration(acceleration);
  272. return *this ;
  273. }
  274. Atm_AccelStepper& Atm_AccelStepper::setPosition(long int position){
  275. stepper->setCurrentPosition(position);
  276. _currentStep = position ;
  277. return *this ;
  278. }
  279. long int Atm_AccelStepper::getPosition(){
  280. return stepper->currentPosition();;
  281. }
  282. Atm_AccelStepper& Atm_AccelStepper::position_refresh(long int refresh_ms){
  283. POSITION_SEND_TIMER = refresh_ms ;
  284. return *this ;
  285. }
  286. Atm_AccelStepper& Atm_AccelStepper::move( long int stepRel) {
  287. _targetStep = _currentStep + stepRel;
  288. runMode = 0;
  289. _isHoming = 0;
  290. //Serial.println(_targetStep);
  291. stepper->moveTo(_targetStep);
  292. enable();
  293. trigger( EVT_MOVE );
  294. return *this;
  295. }
  296. Atm_AccelStepper& Atm_AccelStepper::moveTo( long int stepAbs) {
  297. _targetStep = stepAbs;
  298. _isHoming = 0 ;
  299. runMode = 0;
  300. stepper->moveTo(_targetStep);
  301. enable();
  302. trigger( EVT_MOVE );
  303. return *this;
  304. }
  305. Atm_AccelStepper& Atm_AccelStepper::rotate( long int speed) {
  306. runMode = 1;
  307. _isHoming = 0 ;
  308. stepper->setSpeed( speed);
  309. enable();
  310. trigger( EVT_MOVE );
  311. return *this;
  312. }
  313. Atm_AccelStepper& Atm_AccelStepper::homing( bool direction ){
  314. enable();
  315. direction == 1 ? _isHoming = 2 : _isHoming = 1;
  316. direction == 1 ? this->trigger(EVT_HOMING_HIGH) : this->trigger(EVT_HOMING_LOW);
  317. return *this;
  318. }
  319. // Atm_AccelStepper& Atm_AccelStepper::rotationReversed(bool reversed){
  320. // _rotationReversed = reversed ? -1 : 1 ;
  321. // }
  322. Atm_AccelStepper& Atm_AccelStepper::setEnablePin( int enablePin ){
  323. _enablePin = enablePin ;
  324. pinMode(_enablePin, OUTPUT);
  325. return *this;
  326. }
  327. Atm_AccelStepper& Atm_AccelStepper::pinReversed( bool directionInvert,
  328. bool stepInvert, bool enableInvert){
  329. stepper->setPinsInverted(directionInvert, stepInvert, enableInvert);
  330. return *this;
  331. }
  332. Atm_AccelStepper& Atm_AccelStepper::limitLow_set(int mode, int pin, int reversed){
  333. _limitLow_Mode = mode ;
  334. _limitLow_Pin = pin ;
  335. _limitLow_Reversed = reversed ;
  336. if (_limitLow_Mode==1) {pinMode(_limitLow_Pin, INPUT_PULLUP);}
  337. if (_limitLow_Mode==2) {pinMode(_limitLow_Pin, INPUT);}
  338. return *this;
  339. }
  340. Atm_AccelStepper& Atm_AccelStepper::limitLow_isHard(bool hardlimit){
  341. _limitLow_Hard = hardlimit;
  342. return *this;
  343. }
  344. Atm_AccelStepper& Atm_AccelStepper::limitLow_setThresholds (int threshold_low, int threshold_high){
  345. _limitLow_Thresholds[0] = threshold_low ;
  346. _limitLow_Thresholds[1] = threshold_high ;
  347. return *this;
  348. }
  349. Atm_AccelStepper& Atm_AccelStepper::limitHigh_set(int mode, int pin, int reversed){
  350. _limitHigh_Mode = mode ;
  351. _limitHigh_Pin = pin ;
  352. _limitHigh_Reversed = reversed ;
  353. if (_limitHigh_Mode==1) {pinMode(_limitHigh_Pin, INPUT_PULLUP);}
  354. if (_limitHigh_Mode==2) {pinMode(_limitHigh_Pin, INPUT);}
  355. return *this;
  356. }
  357. Atm_AccelStepper& Atm_AccelStepper::limitHigh_isHard(bool hardlimit){
  358. _limitHigh_Hard = hardlimit;
  359. return *this;
  360. }
  361. Atm_AccelStepper& Atm_AccelStepper::limitHigh_setThresholds (int threshold_low, int threshold_high){
  362. _limitHigh_Thresholds[0] = threshold_low ;
  363. _limitHigh_Thresholds[1] = threshold_high ;
  364. return *this;
  365. }
  366. /* Public event methods
  367. *
  368. */
  369. Atm_AccelStepper& Atm_AccelStepper::disable() {
  370. trigger( EVT_DISABLE );
  371. return *this;
  372. }
  373. Atm_AccelStepper& Atm_AccelStepper::enable() {
  374. trigger( EVT_ENABLE );
  375. return *this;
  376. }
  377. // Atm_AccelStepper& Atm_AccelStepper::move() {
  378. // trigger( EVT_MOVE );
  379. // return *this;
  380. // }
  381. Atm_AccelStepper& Atm_AccelStepper::stop() {
  382. trigger( EVT_STOP );
  383. return *this;
  384. }
  385. Atm_AccelStepper& Atm_AccelStepper::emergency_stop() {
  386. trigger( EVT_EMERGENCY_STOP );
  387. return *this;
  388. }
  389. Atm_AccelStepper& Atm_AccelStepper::on_limit_low() {
  390. trigger( EVT_ON_LIMIT_LOW );
  391. return *this;
  392. }
  393. Atm_AccelStepper& Atm_AccelStepper::on_limit_high() {
  394. trigger( EVT_ON_LIMIT_HIGH );
  395. return *this;
  396. }
  397. Atm_AccelStepper& Atm_AccelStepper::on_target() {
  398. trigger( EVT_ON_TARGET );
  399. return *this;
  400. }
  401. /*
  402. * onChangeposition() push connector variants ( slots 1, autostore 0, broadcast 0 )
  403. */
  404. Atm_AccelStepper& Atm_AccelStepper::onChangeposition( Machine& machine, int event ) {
  405. onPush( connectors, ON_CHANGEPOSITION, 0, 1, 1, machine, event );
  406. return *this;
  407. }
  408. Atm_AccelStepper& Atm_AccelStepper::onChangeposition( atm_cb_push_t callback, int idx ) {
  409. onPush( connectors, ON_CHANGEPOSITION, 0, 1, 1, callback, idx );
  410. return *this;
  411. }
  412. /*
  413. * onChangestate() push connector variants ( slots 1, autostore 0, broadcast 0 )
  414. */
  415. Atm_AccelStepper& Atm_AccelStepper::onChangestate( Machine& machine, int event ) {
  416. onPush( connectors, ON_CHANGESTATE, 0, 1, 1, machine, event );
  417. return *this;
  418. }
  419. Atm_AccelStepper& Atm_AccelStepper::onChangestate( atm_cb_push_t callback, int idx ) {
  420. onPush( connectors, ON_CHANGESTATE, 0, 1, 1, callback, idx );
  421. return *this;
  422. }
  423. /*
  424. * onOnlimithigh() push connector variants ( slots 1, autostore 0, broadcast 0 )
  425. */
  426. Atm_AccelStepper& Atm_AccelStepper::onOnlimithigh( Machine& machine, int event ) {
  427. onPush( connectors, ON_ONLIMITHIGH, 0, 1, 1, machine, event );
  428. return *this;
  429. }
  430. Atm_AccelStepper& Atm_AccelStepper::onOnlimithigh( atm_cb_push_t callback, int idx ) {
  431. onPush( connectors, ON_ONLIMITHIGH, 0, 1, 1, callback, idx );
  432. return *this;
  433. }
  434. /*
  435. * onOnlimitlow() push connector variants ( slots 1, autostore 0, broadcast 0 )
  436. */
  437. Atm_AccelStepper& Atm_AccelStepper::onOnlimitlow( Machine& machine, int event ) {
  438. onPush( connectors, ON_ONLIMITLOW, 0, 1, 1, machine, event );
  439. return *this;
  440. }
  441. Atm_AccelStepper& Atm_AccelStepper::onOnlimitlow( atm_cb_push_t callback, int idx ) {
  442. onPush( connectors, ON_ONLIMITLOW, 0, 1, 1, callback, idx );
  443. return *this;
  444. }
  445. /*
  446. * onOntarget() push connector variants ( slots 1, autostore 0, broadcast 0 )
  447. */
  448. Atm_AccelStepper& Atm_AccelStepper::onOntarget( Machine& machine, int event ) {
  449. onPush( connectors, ON_ONTARGET, 0, 1, 1, machine, event );
  450. return *this;
  451. }
  452. Atm_AccelStepper& Atm_AccelStepper::onOntarget( atm_cb_push_t callback, int idx ) {
  453. onPush( connectors, ON_ONTARGET, 0, 1, 1, callback, idx );
  454. return *this;
  455. }
  456. /*
  457. * onStop() push connector variants ( slots 1, autostore 0, broadcast 0 )
  458. */
  459. Atm_AccelStepper& Atm_AccelStepper::onStop( Machine& machine, int event ) {
  460. onPush( connectors, ON_STOP, 0, 1, 1, machine, event );
  461. return *this;
  462. }
  463. Atm_AccelStepper& Atm_AccelStepper::onStop( atm_cb_push_t callback, int idx ) {
  464. onPush( connectors, ON_STOP, 0, 1, 1, callback, idx );
  465. return *this;
  466. }
  467. Atm_AccelStepper& Atm_AccelStepper::onOnhominglow( Machine& machine, int event ) {
  468. onPush( connectors, ON_ONTARGET, 0, 1, 1, machine, event );
  469. return *this;
  470. }
  471. Atm_AccelStepper& Atm_AccelStepper::onOnhominglow( atm_cb_push_t callback, int idx ) {
  472. onPush( connectors, ON_ONTARGET, 0, 1, 1, callback, idx );
  473. return *this;
  474. }
  475. Atm_AccelStepper& Atm_AccelStepper::onOnhominghigh( Machine& machine, int event ) {
  476. onPush( connectors, ON_ONTARGET, 0, 1, 1, machine, event );
  477. return *this;
  478. }
  479. Atm_AccelStepper& Atm_AccelStepper::onOnhominghigh( atm_cb_push_t callback, int idx ) {
  480. onPush( connectors, ON_ONTARGET, 0, 1, 1, callback, idx );
  481. return *this;
  482. }
  483. /* State trace method
  484. * Sets the symbol table and the default logging method for serial monitoring
  485. */
  486. Atm_AccelStepper& Atm_AccelStepper::trace( Stream & stream ) {
  487. Machine::setTrace( &stream, atm_serial_debug::trace,
  488. "ACCELSTEPPER\0EVT_DISABLE\0EVT_ENABLE\0EVT_ENABLED_TIMEOUT\0EVT_MOVE\0EVT_STOP\0EVT_EMERGENCY_STOP\0EVT_ON_LIMIT_LOW\0EVT_ON_LIMIT_HIGH\0EVT_ON_TARGET\0EVT_HOMING_LOW\0EVT_HOMING_HIGH\0ELSE\0DISABLED\0ENABLED\0RUNNING\0STOP\0HOMING_LOW\0HOMING_HIGH\0LIMIT_LOW\0LIMIT_HIGH" );
  489. return *this;
  490. }