Atm_AccelStepper.cpp 19 KB

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