Atm_AccelStepper.cpp 19 KB

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