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