Atm_AccelStepper.cpp 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  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. bool Atm_AccelStepper::isRunning(){
  297. return stepper->isRunning();
  298. }
  299. float Atm_AccelStepper::getSpeed(){
  300. return stepper->speed();
  301. }
  302. Atm_AccelStepper& Atm_AccelStepper::position_refresh(long int refresh_ms){
  303. POSITION_SEND_TIMER = refresh_ms ;
  304. return *this ;
  305. }
  306. Atm_AccelStepper& Atm_AccelStepper::move( long int stepRel) {
  307. _targetStep = _currentStep + stepRel;
  308. runMode = 0;
  309. _isHoming = 0;
  310. //Serial.println(_targetStep);
  311. stepper->moveTo(_targetStep);
  312. enable();
  313. trigger( EVT_MOVE );
  314. return *this;
  315. }
  316. Atm_AccelStepper& Atm_AccelStepper::moveTo( long int stepAbs) {
  317. _targetStep = stepAbs;
  318. _isHoming = 0 ;
  319. runMode = 0;
  320. stepper->moveTo(_targetStep);
  321. enable();
  322. trigger( EVT_MOVE );
  323. return *this;
  324. }
  325. Atm_AccelStepper& Atm_AccelStepper::rotate( long int speed) {
  326. runMode = 1;
  327. _isHoming = 0 ;
  328. stepper->setSpeed( speed);
  329. enable();
  330. trigger( EVT_MOVE );
  331. return *this;
  332. }
  333. Atm_AccelStepper& Atm_AccelStepper::homing( bool direction ){
  334. enable();
  335. direction == 1 ? _isHoming = 2 : _isHoming = 1;
  336. direction == 1 ? this->trigger(EVT_HOMING_HIGH) : this->trigger(EVT_HOMING_LOW);
  337. return *this;
  338. }
  339. // Atm_AccelStepper& Atm_AccelStepper::rotationReversed(bool reversed){
  340. // _rotationReversed = reversed ? -1 : 1 ;
  341. // }
  342. Atm_AccelStepper& Atm_AccelStepper::setEnablePin( int enablePin ){
  343. _enablePin = enablePin ;
  344. pinMode(_enablePin, OUTPUT);
  345. return *this;
  346. }
  347. Atm_AccelStepper& Atm_AccelStepper::pinReversed( bool directionInvert,
  348. bool stepInvert, bool enableInvert){
  349. stepper->setPinsInverted(directionInvert, stepInvert, enableInvert);
  350. return *this;
  351. }
  352. Atm_AccelStepper& Atm_AccelStepper::limitLow_set(int mode, int pin, int reversed){
  353. _limitLow_Mode = mode ;
  354. _limitLow_Pin = pin ;
  355. _limitLow_Reversed = reversed ;
  356. if (_limitLow_Mode==1) {pinMode(_limitLow_Pin, INPUT_PULLUP);}
  357. if (_limitLow_Mode==2) {pinMode(_limitLow_Pin, INPUT);}
  358. return *this;
  359. }
  360. Atm_AccelStepper& Atm_AccelStepper::limitLow_isHard(bool hardlimit){
  361. _limitLow_Hard = hardlimit;
  362. return *this;
  363. }
  364. Atm_AccelStepper& Atm_AccelStepper::limitLow_setThresholds (int threshold_low, int threshold_high){
  365. _limitLow_Thresholds[0] = threshold_low ;
  366. _limitLow_Thresholds[1] = threshold_high ;
  367. return *this;
  368. }
  369. Atm_AccelStepper& Atm_AccelStepper::limitHigh_set(int mode, int pin, int reversed){
  370. _limitHigh_Mode = mode ;
  371. _limitHigh_Pin = pin ;
  372. _limitHigh_Reversed = reversed ;
  373. if (_limitHigh_Mode==1) {pinMode(_limitHigh_Pin, INPUT_PULLUP);}
  374. if (_limitHigh_Mode==2) {pinMode(_limitHigh_Pin, INPUT);}
  375. return *this;
  376. }
  377. Atm_AccelStepper& Atm_AccelStepper::limitHigh_isHard(bool hardlimit){
  378. _limitHigh_Hard = hardlimit;
  379. return *this;
  380. }
  381. Atm_AccelStepper& Atm_AccelStepper::limitHigh_setThresholds (int threshold_low, int threshold_high){
  382. _limitHigh_Thresholds[0] = threshold_low ;
  383. _limitHigh_Thresholds[1] = threshold_high ;
  384. return *this;
  385. }
  386. /* Public event methods
  387. *
  388. */
  389. Atm_AccelStepper& Atm_AccelStepper::disable() {
  390. trigger( EVT_DISABLE );
  391. return *this;
  392. }
  393. Atm_AccelStepper& Atm_AccelStepper::enable() {
  394. trigger( EVT_ENABLE );
  395. return *this;
  396. }
  397. // Atm_AccelStepper& Atm_AccelStepper::move() {
  398. // trigger( EVT_MOVE );
  399. // return *this;
  400. // }
  401. Atm_AccelStepper& Atm_AccelStepper::stop() {
  402. trigger( EVT_STOP );
  403. return *this;
  404. }
  405. Atm_AccelStepper& Atm_AccelStepper::emergency_stop() {
  406. trigger( EVT_EMERGENCY_STOP );
  407. return *this;
  408. }
  409. Atm_AccelStepper& Atm_AccelStepper::on_limit_low() {
  410. trigger( EVT_ON_LIMIT_LOW );
  411. return *this;
  412. }
  413. Atm_AccelStepper& Atm_AccelStepper::on_limit_high() {
  414. trigger( EVT_ON_LIMIT_HIGH );
  415. return *this;
  416. }
  417. Atm_AccelStepper& Atm_AccelStepper::on_target() {
  418. trigger( EVT_ON_TARGET );
  419. return *this;
  420. }
  421. /*
  422. * onChangeposition() push connector variants ( slots 1, autostore 0, broadcast 0 )
  423. */
  424. Atm_AccelStepper& Atm_AccelStepper::onChangeposition( Machine& machine, int event ) {
  425. onPush( connectors, ON_CHANGEPOSITION, 0, 1, 1, machine, event );
  426. return *this;
  427. }
  428. Atm_AccelStepper& Atm_AccelStepper::onChangeposition( atm_cb_push_t callback, int idx ) {
  429. onPush( connectors, ON_CHANGEPOSITION, 0, 1, 1, callback, idx );
  430. return *this;
  431. }
  432. /*
  433. * onChangestate() push connector variants ( slots 1, autostore 0, broadcast 0 )
  434. */
  435. Atm_AccelStepper& Atm_AccelStepper::onChangestate( Machine& machine, int event ) {
  436. onPush( connectors, ON_CHANGESTATE, 0, 1, 1, machine, event );
  437. return *this;
  438. }
  439. Atm_AccelStepper& Atm_AccelStepper::onChangestate( atm_cb_push_t callback, int idx ) {
  440. onPush( connectors, ON_CHANGESTATE, 0, 1, 1, callback, idx );
  441. return *this;
  442. }
  443. /*
  444. * onOnlimithigh() push connector variants ( slots 1, autostore 0, broadcast 0 )
  445. */
  446. Atm_AccelStepper& Atm_AccelStepper::onOnlimithigh( Machine& machine, int event ) {
  447. onPush( connectors, ON_ONLIMITHIGH, 0, 1, 1, machine, event );
  448. return *this;
  449. }
  450. Atm_AccelStepper& Atm_AccelStepper::onOnlimithigh( atm_cb_push_t callback, int idx ) {
  451. onPush( connectors, ON_ONLIMITHIGH, 0, 1, 1, callback, idx );
  452. return *this;
  453. }
  454. /*
  455. * onOnlimitlow() push connector variants ( slots 1, autostore 0, broadcast 0 )
  456. */
  457. Atm_AccelStepper& Atm_AccelStepper::onOnlimitlow( Machine& machine, int event ) {
  458. onPush( connectors, ON_ONLIMITLOW, 0, 1, 1, machine, event );
  459. return *this;
  460. }
  461. Atm_AccelStepper& Atm_AccelStepper::onOnlimitlow( atm_cb_push_t callback, int idx ) {
  462. onPush( connectors, ON_ONLIMITLOW, 0, 1, 1, callback, idx );
  463. return *this;
  464. }
  465. /*
  466. * onOntarget() push connector variants ( slots 1, autostore 0, broadcast 0 )
  467. */
  468. Atm_AccelStepper& Atm_AccelStepper::onOntarget( Machine& machine, int event ) {
  469. onPush( connectors, ON_ONTARGET, 0, 1, 1, machine, event );
  470. return *this;
  471. }
  472. Atm_AccelStepper& Atm_AccelStepper::onOntarget( atm_cb_push_t callback, int idx ) {
  473. onPush( connectors, ON_ONTARGET, 0, 1, 1, callback, idx );
  474. return *this;
  475. }
  476. /*
  477. * onStop() push connector variants ( slots 1, autostore 0, broadcast 0 )
  478. */
  479. Atm_AccelStepper& Atm_AccelStepper::onStop( Machine& machine, int event ) {
  480. onPush( connectors, ON_STOP, 0, 1, 1, machine, event );
  481. return *this;
  482. }
  483. Atm_AccelStepper& Atm_AccelStepper::onStop( atm_cb_push_t callback, int idx ) {
  484. onPush( connectors, ON_STOP, 0, 1, 1, callback, idx );
  485. return *this;
  486. }
  487. Atm_AccelStepper& Atm_AccelStepper::onOnhominglow( Machine& machine, int event ) {
  488. onPush( connectors, ON_ONTARGET, 0, 1, 1, machine, event );
  489. return *this;
  490. }
  491. Atm_AccelStepper& Atm_AccelStepper::onOnhominglow( atm_cb_push_t callback, int idx ) {
  492. onPush( connectors, ON_ONTARGET, 0, 1, 1, callback, idx );
  493. return *this;
  494. }
  495. Atm_AccelStepper& Atm_AccelStepper::onOnhominghigh( Machine& machine, int event ) {
  496. onPush( connectors, ON_ONTARGET, 0, 1, 1, machine, event );
  497. return *this;
  498. }
  499. Atm_AccelStepper& Atm_AccelStepper::onOnhominghigh( atm_cb_push_t callback, int idx ) {
  500. onPush( connectors, ON_ONTARGET, 0, 1, 1, callback, idx );
  501. return *this;
  502. }
  503. /* State trace method
  504. * Sets the symbol table and the default logging method for serial monitoring
  505. */
  506. Atm_AccelStepper& Atm_AccelStepper::trace( Stream & stream ) {
  507. Machine::setTrace( &stream, atm_serial_debug::trace,
  508. "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" );
  509. return *this;
  510. }