Atm_AccelStepper.cpp 21 KB

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