Atm_AccelStepper.cpp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629
  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, 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. bool changed ;
  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. changed = limitLow_State != limitLow_State_prev ? 1 : 0 ;
  51. break;
  52. case 1: //digital INPUT
  53. // Serial.println("digital");
  54. limitLow_State = digitalRead(_limitLow_Pin);
  55. limitLow_State = _limitLow_Reversed ? !limitLow_State : limitLow_State;
  56. changed = limitLow_State != limitLow_State_prev ? 1 : 0 ;
  57. break;
  58. case 2:
  59. int 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. if(limitLow_State){
  63. delay(3);
  64. analogTemp = analogRead(_limitLow_Pin);
  65. limitLow_State = (_limitLow_Thresholds[0] < analogTemp) && (analogTemp < _limitLow_Thresholds[1]);
  66. limitLow_State = _limitLow_Reversed ? !limitLow_State : limitLow_State;
  67. }
  68. changed = limitLow_State != limitLow_State_prev ? 1 : 0 ;
  69. break;
  70. }
  71. limitLow_State_prev = limitLow_State ;
  72. return changed ;
  73. case EVT_ON_LIMIT_HIGH:
  74. // previous_state = limitHigh_State;
  75. switch(_limitHigh_Mode) {
  76. case 0:
  77. changed = limitHigh_State != limitHigh_State_prev ? 1 : 0;
  78. break;
  79. case 1: //digital INPUT
  80. limitHigh_State = digitalRead(_limitHigh_Pin);
  81. limitHigh_State = _limitHigh_Reversed ? !limitHigh_State : limitHigh_State;
  82. changed = limitHigh_State != limitHigh_State_prev ? 1 : 0;
  83. break;
  84. case 2:
  85. //Serial.println("analog");
  86. int analogTemp = analogRead(_limitHigh_Pin);
  87. limitHigh_State = (_limitHigh_Thresholds[0] < analogTemp) && (analogTemp < _limitHigh_Thresholds[1]);
  88. limitHigh_State = _limitHigh_Reversed ? !limitHigh_State : limitHigh_State;
  89. if(limitHigh_State){
  90. delay(3);
  91. analogTemp = analogRead(_limitHigh_Pin);
  92. limitHigh_State = (_limitHigh_Thresholds[0] < analogTemp) && (analogTemp < _limitHigh_Thresholds[1]);
  93. limitHigh_State = _limitHigh_Reversed ? !limitHigh_State : limitHigh_State;
  94. }
  95. changed = limitHigh_State != limitHigh_State_prev ? 1 : 0;
  96. break;
  97. }
  98. limitHigh_State_prev = limitHigh_State_prev;
  99. return changed;
  100. case EVT_ON_TARGET:
  101. return runMode ? 0 : _currentStep == _targetStep;
  102. case EVT_HOMING_LOW:
  103. return 0;
  104. case EVT_HOMING_HIGH:
  105. return 0;
  106. }
  107. return 0;
  108. }
  109. /* Add C++ code for each action
  110. * This generates the 'output' for the state machine
  111. *
  112. * Available connectors:
  113. * push( connectors, ON_CHANGEPOSITION, 0, <v>, <up> );
  114. * push( connectors, ON_CHANGESTATE, 0, <v>, <up> );
  115. * push( connectors, ON_ONLIMITHIGH, 0, <v>, <up> );
  116. * push( connectors, ON_ONLIMITLOW, 0, <v>, <up> );
  117. * push( connectors, ON_ONTARGET, 0, <v>, <up> );
  118. * push( connectors, ON_STOP, 0, <v>, <up> );
  119. */
  120. void Atm_AccelStepper::action( int id ) {
  121. switch ( id ) {
  122. case ENT_DISABLED:
  123. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  124. enabled = _enableReversed ? HIGH : LOW;
  125. digitalWrite(_enablePin, enabled);
  126. return;
  127. case ENT_ENABLED:
  128. _isHoming = 0 ;
  129. if(last_trigger == EVT_ON_TARGET){push( connectors, ON_ONTARGET, 0, _currentStep, 0 );};
  130. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  131. push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
  132. enabled = _enableReversed ? LOW : HIGH ;
  133. //reset limit state so that they trigger again if we're stopped on it
  134. limitLow_State = 0;
  135. limitHigh_State = 0;
  136. digitalWrite(_enablePin, enabled);
  137. return;
  138. case ENT_RUNNING:
  139. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  140. push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
  141. _isHoming = 0;
  142. Serial.print("target ");
  143. Serial.println(_targetStep);
  144. stepper->moveTo(_targetStep);
  145. // stepper->computeNewSpeed();
  146. //stepper_update();
  147. //push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
  148. position_timer.setFromNow(this, POSITION_SEND_TIMER);
  149. return;
  150. case LP_RUNNING:
  151. stepper_update();
  152. if(stepper->speed() == 0.) {trigger(EVT_ON_TARGET);}
  153. return;
  154. case ENT_STOP:
  155. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  156. push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
  157. if (last_trigger == EVT_STOP) {
  158. // runMode = 0 ;
  159. stepper->stop();
  160. _targetStep = stepper->targetPosition();
  161. push( connectors, ON_STOP, 0, 0, 0 );
  162. }
  163. if (last_trigger == EVT_EMERGENCY_STOP) {
  164. stepper->setSpeed(0);
  165. _currentStep = stepper->currentPosition();
  166. _targetStep = _currentStep ;
  167. stepper->moveTo(_targetStep);
  168. push( connectors, ON_STOP, 0, 1, 0 );
  169. }
  170. return;
  171. case LP_STOP:
  172. stepper_update();
  173. push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
  174. if(stepper->speed() == 0.) {trigger(EVT_ON_TARGET);}
  175. // _currentStep = stepper->currentPosition();
  176. return;
  177. case ENT_HOMING_LOW:
  178. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  179. push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
  180. runMode = 1;
  181. _isHoming = 1 ;
  182. stepper->setSpeed(-1*homing_speed);
  183. return;
  184. case LP_HOMING_LOW:
  185. stepper_update();
  186. push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
  187. return;
  188. case EXT_HOMING_LOW:
  189. runMode = 0;
  190. _isHoming = 0;
  191. push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
  192. if(last_trigger == EVT_ON_LIMIT_LOW) {
  193. stepper->setCurrentPosition(0);
  194. _currentStep = 0;
  195. push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
  196. Serial.println("homing low done");
  197. }
  198. else{Serial.println("homing low failed");}
  199. trigger(EVT_EMERGENCY_STOP);
  200. return;
  201. case ENT_HOMING_HIGH:
  202. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  203. push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
  204. runMode = 1;
  205. _isHoming = 2 ;
  206. stepper->setSpeed(homing_speed);
  207. return;
  208. case LP_HOMING_HIGH:
  209. stepper_update();
  210. push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
  211. return;
  212. case EXT_HOMING_HIGH:
  213. push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
  214. runMode = 0;
  215. _isHoming = 0;
  216. trigger(EVT_EMERGENCY_STOP);
  217. if(last_trigger == EVT_ON_LIMIT_HIGH) {
  218. _maxStep = stepper->currentPosition();
  219. _currentStep = _maxStep;
  220. Serial.println("homing high done");
  221. }
  222. else{Serial.println("homing high failed");}
  223. _targetStep = _currentStep;
  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_ONTARGET, 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_ONTARGET, 0, 1, 1, callback, idx );
  528. return *this;
  529. }
  530. Atm_AccelStepper& Atm_AccelStepper::onOnhominghigh( Machine& machine, int event ) {
  531. onPush( connectors, ON_ONTARGET, 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_ONTARGET, 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. }