Atm_AccelStepper.cpp 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660
  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. bool tempState ;
  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. switch(_limitLow_Mode) {
  48. case 0:
  49. break;
  50. case 1: //digital INPUT
  51. // Serial.println("digital");
  52. limitLow_State_raw = digitalRead(_limitLow_Pin);
  53. limitLow_State_raw = _limitLow_Reversed ? !limitLow_State_raw : limitLow_State_raw;
  54. break;
  55. case 2:
  56. int analogTemp = analogRead(_limitLow_Pin);
  57. limitLow_State_raw = (_limitLow_Thresholds[0] < analogTemp) && (analogTemp < _limitLow_Thresholds[1]);
  58. limitLow_State_raw = _limitLow_Reversed ? !limitLow_State_raw : limitLow_State_raw;
  59. // if(limitLow_State){
  60. // delay(3);
  61. // analogTemp = analogRead(_limitLow_Pin);
  62. // limitLow_State = (_limitLow_Thresholds[0] < analogTemp) && (analogTemp < _limitLow_Thresholds[1]);
  63. // limitLow_State = _limitLow_Reversed ? !limitLow_State : limitLow_State;
  64. // }
  65. break;
  66. }
  67. limitLow_State = limitLow_avg(limitLow_State_raw);
  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. switch(_limitHigh_Mode) {
  73. case 0:
  74. break;
  75. case 1: //digital INPUT
  76. limitHigh_State_raw = digitalRead(_limitHigh_Pin);
  77. limitHigh_State_raw = _limitHigh_Reversed ? !limitHigh_State_raw : limitHigh_State_raw;
  78. break;
  79. case 2:
  80. //Serial.println("analog");
  81. int analogTemp = analogRead(_limitHigh_Pin);
  82. limitHigh_State_raw = (_limitHigh_Thresholds[0] < analogTemp) && (analogTemp < _limitHigh_Thresholds[1]);
  83. limitHigh_State_raw = _limitHigh_Reversed ? !limitHigh_State_raw : limitHigh_State_raw;
  84. // if(limitHigh_State){
  85. // delay(3);
  86. // 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. // }
  90. break;
  91. }
  92. limitHigh_State = limitHigh_avg(limitHigh_State_raw);
  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. int Atm_AccelStepper::limitLow_avg(bool limistate){
  375. limitLow_state_total = limitLow_state_total + limistate - limitLow_state_buf[limitLow_buf_head];
  376. limitLow_state_buf[limitLow_buf_head] = limistate;
  377. if ( limitLow_buf_head + 1 >= limit_buf_size ) {
  378. limitLow_buf_head = 0;
  379. } else {
  380. limitLow_buf_head++;
  381. }
  382. for (int i =0; i<limit_buf_size; i++){
  383. Serial.print(limitLow_state_buf[i]);
  384. Serial.print(" ");
  385. }
  386. Serial.println();
  387. return limitLow_state_total > limit_buf_size / 2; //all values should agree
  388. }
  389. int Atm_AccelStepper::limitHigh_avg(bool limistate){
  390. limitHigh_state_total = limitHigh_state_total + limistate - limitHigh_state_buf[limitHigh_buf_head];
  391. limitHigh_state_buf[limitHigh_buf_head] = limistate;
  392. if ( limitHigh_buf_head + 1 >= limit_buf_size ) {
  393. limitHigh_buf_head = 0;
  394. } else {
  395. limitHigh_buf_head++;
  396. }
  397. return limitHigh_state_total < limit_buf_size / 2; //all values should agree
  398. }
  399. // Atm_AccelStepper& Atm_AccelStepper::rotationReversed(bool reversed){
  400. // _rotationReversed = reversed ? -1 : 1 ;
  401. // }
  402. Atm_AccelStepper& Atm_AccelStepper::setEnablePin( int enablePin ){
  403. _enablePin = enablePin ;
  404. pinMode(_enablePin, OUTPUT);
  405. return *this;
  406. }
  407. Atm_AccelStepper& Atm_AccelStepper::pinReversed( bool directionInvert,
  408. bool stepInvert, bool enableInvert){
  409. stepper->setPinsInverted(directionInvert, stepInvert, enableInvert);
  410. return *this;
  411. }
  412. Atm_AccelStepper& Atm_AccelStepper::limitLow_set(int mode, int pin, int reversed){
  413. _limitLow_Mode = mode ;
  414. _limitLow_Pin = pin ;
  415. _limitLow_Reversed = reversed ;
  416. if (_limitLow_Mode==1) {pinMode(_limitLow_Pin, INPUT_PULLUP);}
  417. if (_limitLow_Mode==2) {pinMode(_limitLow_Pin, INPUT);}
  418. return *this;
  419. }
  420. Atm_AccelStepper& Atm_AccelStepper::limitLow_isHard(bool hardlimit){
  421. _limitLow_Hard = hardlimit;
  422. return *this;
  423. }
  424. Atm_AccelStepper& Atm_AccelStepper::limitLow_setThresholds (int threshold_low, int threshold_high){
  425. _limitLow_Thresholds[0] = threshold_low ;
  426. _limitLow_Thresholds[1] = threshold_high ;
  427. return *this;
  428. }
  429. Atm_AccelStepper& Atm_AccelStepper::limitHigh_set(int mode, int pin, int reversed){
  430. _limitHigh_Mode = mode ;
  431. _limitHigh_Pin = pin ;
  432. _limitHigh_Reversed = reversed ;
  433. if (_limitHigh_Mode==1) {pinMode(_limitHigh_Pin, INPUT_PULLUP);}
  434. if (_limitHigh_Mode==2) {pinMode(_limitHigh_Pin, INPUT);}
  435. return *this;
  436. }
  437. Atm_AccelStepper& Atm_AccelStepper::limitHigh_isHard(bool hardlimit){
  438. _limitHigh_Hard = hardlimit;
  439. return *this;
  440. }
  441. Atm_AccelStepper& Atm_AccelStepper::limitHigh_setThresholds (int threshold_low, int threshold_high){
  442. _limitHigh_Thresholds[0] = threshold_low ;
  443. _limitHigh_Thresholds[1] = threshold_high ;
  444. return *this;
  445. }
  446. /* Public event methods
  447. *
  448. */
  449. Atm_AccelStepper& Atm_AccelStepper::disable() {
  450. trigger( EVT_DISABLE );
  451. return *this;
  452. }
  453. Atm_AccelStepper& Atm_AccelStepper::enable() {
  454. trigger( EVT_ENABLE );
  455. return *this;
  456. }
  457. // Atm_AccelStepper& Atm_AccelStepper::move() {
  458. // trigger( EVT_MOVE );
  459. // return *this;
  460. // }
  461. Atm_AccelStepper& Atm_AccelStepper::stop() {
  462. trigger( EVT_STOP );
  463. return *this;
  464. }
  465. Atm_AccelStepper& Atm_AccelStepper::emergency_stop() {
  466. trigger( EVT_EMERGENCY_STOP );
  467. return *this;
  468. }
  469. Atm_AccelStepper& Atm_AccelStepper::on_limit_low() {
  470. trigger( EVT_ON_LIMIT_LOW );
  471. return *this;
  472. }
  473. Atm_AccelStepper& Atm_AccelStepper::on_limit_high() {
  474. trigger( EVT_ON_LIMIT_HIGH );
  475. return *this;
  476. }
  477. Atm_AccelStepper& Atm_AccelStepper::on_target() {
  478. trigger( EVT_ON_TARGET );
  479. return *this;
  480. }
  481. /*
  482. * onChangeposition() push connector variants ( slots 1, autostore 0, broadcast 0 )
  483. */
  484. Atm_AccelStepper& Atm_AccelStepper::onChangeposition( Machine& machine, int event ) {
  485. onPush( connectors, ON_CHANGEPOSITION, 0, 1, 1, machine, event );
  486. return *this;
  487. }
  488. Atm_AccelStepper& Atm_AccelStepper::onChangeposition( atm_cb_push_t callback, int idx ) {
  489. onPush( connectors, ON_CHANGEPOSITION, 0, 1, 1, callback, idx );
  490. return *this;
  491. }
  492. /*
  493. * onChangestate() push connector variants ( slots 1, autostore 0, broadcast 0 )
  494. */
  495. Atm_AccelStepper& Atm_AccelStepper::onChangestate( Machine& machine, int event ) {
  496. onPush( connectors, ON_CHANGESTATE, 0, 1, 1, machine, event );
  497. return *this;
  498. }
  499. Atm_AccelStepper& Atm_AccelStepper::onChangestate( atm_cb_push_t callback, int idx ) {
  500. onPush( connectors, ON_CHANGESTATE, 0, 1, 1, callback, idx );
  501. return *this;
  502. }
  503. /*
  504. * onOnlimithigh() push connector variants ( slots 1, autostore 0, broadcast 0 )
  505. */
  506. Atm_AccelStepper& Atm_AccelStepper::onOnlimithigh( Machine& machine, int event ) {
  507. onPush( connectors, ON_ONLIMITHIGH, 0, 1, 1, machine, event );
  508. return *this;
  509. }
  510. Atm_AccelStepper& Atm_AccelStepper::onOnlimithigh( atm_cb_push_t callback, int idx ) {
  511. onPush( connectors, ON_ONLIMITHIGH, 0, 1, 1, callback, idx );
  512. return *this;
  513. }
  514. /*
  515. * onOnlimitlow() push connector variants ( slots 1, autostore 0, broadcast 0 )
  516. */
  517. Atm_AccelStepper& Atm_AccelStepper::onOnlimitlow( Machine& machine, int event ) {
  518. onPush( connectors, ON_ONLIMITLOW, 0, 1, 1, machine, event );
  519. return *this;
  520. }
  521. Atm_AccelStepper& Atm_AccelStepper::onOnlimitlow( atm_cb_push_t callback, int idx ) {
  522. onPush( connectors, ON_ONLIMITLOW, 0, 1, 1, callback, idx );
  523. return *this;
  524. }
  525. /*
  526. * onOntarget() push connector variants ( slots 1, autostore 0, broadcast 0 )
  527. */
  528. Atm_AccelStepper& Atm_AccelStepper::onOntarget( Machine& machine, int event ) {
  529. onPush( connectors, ON_ONTARGET, 0, 1, 1, machine, event );
  530. return *this;
  531. }
  532. Atm_AccelStepper& Atm_AccelStepper::onOntarget( atm_cb_push_t callback, int idx ) {
  533. onPush( connectors, ON_ONTARGET, 0, 1, 1, callback, idx );
  534. return *this;
  535. }
  536. /*
  537. * onStop() push connector variants ( slots 1, autostore 0, broadcast 0 )
  538. */
  539. Atm_AccelStepper& Atm_AccelStepper::onStop( Machine& machine, int event ) {
  540. onPush( connectors, ON_STOP, 0, 1, 1, machine, event );
  541. return *this;
  542. }
  543. Atm_AccelStepper& Atm_AccelStepper::onStop( atm_cb_push_t callback, int idx ) {
  544. onPush( connectors, ON_STOP, 0, 1, 1, callback, idx );
  545. return *this;
  546. }
  547. Atm_AccelStepper& Atm_AccelStepper::onOnhominglow( Machine& machine, int event ) {
  548. onPush( connectors, ON_ONHOMINGLOW, 0, 1, 1, machine, event );
  549. return *this;
  550. }
  551. Atm_AccelStepper& Atm_AccelStepper::onOnhominglow( atm_cb_push_t callback, int idx ) {
  552. onPush( connectors, ON_ONHOMINGLOW, 0, 1, 1, callback, idx );
  553. return *this;
  554. }
  555. Atm_AccelStepper& Atm_AccelStepper::onOnhominghigh( Machine& machine, int event ) {
  556. onPush( connectors, ON_ONHOMINGHIGH, 0, 1, 1, machine, event );
  557. return *this;
  558. }
  559. Atm_AccelStepper& Atm_AccelStepper::onOnhominghigh( atm_cb_push_t callback, int idx ) {
  560. onPush( connectors, ON_ONHOMINGHIGH, 0, 1, 1, callback, idx );
  561. return *this;
  562. }
  563. /* State trace method
  564. * Sets the symbol table and the default logging method for serial monitoring
  565. */
  566. Atm_AccelStepper& Atm_AccelStepper::trace( Stream & stream ) {
  567. Machine::setTrace( &stream, atm_serial_debug::trace,
  568. "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" );
  569. return *this;
  570. }