Atm_AccelStepper.cpp 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520
  1. #include "Atm_AccelStepper.h"
  2. /* Add optional parameters for the state machine to begin()
  3. * Add extra initialization code
  4. */
  5. Atm_AccelStepper& Atm_AccelStepper::begin(int step_pin, int dir_pin) {
  6. // clang-format off
  7. const static state_t state_table[] PROGMEM = {
  8. /* ON_ENTER ON_LOOP ON_EXIT EVT_DISABLE EVT_ENABLE EVT_ENABLED_TIMEOUT EVT_MOVE EVT_STOP EVT_EMERGENCY_STOP EVT_ON_LIMIT_LOW EVT_ON_LIMIT_HIGH EVT_ON_TARGET EVT_HOMING_LOW EVT_HOMING_HIGH ELSE */
  9. /* DISABLE */ ENT_DISABLED, -1, -1, -1, ENABLED, -1, RUNNING, -1, -1, -1, -1, -1, HOMING_LOW, HOMING_HIGH, -1,
  10. /* ENABLED */ ENT_ENABLED, -1, -1, DISABLE, -1, DISABLE, RUNNING, STOP, STOP, LIMIT_LOW, LIMIT_HIGH, -1, HOMING_LOW, HOMING_HIGH, -1,
  11. /* RUNNING */ ENT_RUNNING, LP_RUNNING, -1, DISABLE, -1, -1, RUNNING, STOP, STOP, LIMIT_LOW, LIMIT_HIGH, ENABLED, -1, -1, -1,
  12. /* STOP */ ENT_STOP, LP_STOP, -1, DISABLE, -1, -1, RUNNING, -1, -1, -1, -1, ENABLED, -1, -1, -1,
  13. /* HOMING_LOW */ ENT_HOMING_LOW, LP_HOMING_LOW, EXT_HOMING_LOW, DISABLE, -1, -1, -1, STOP, STOP, LIMIT_LOW, LIMIT_HIGH, -1, -1, -1, -1,
  14. /* HOMING_HIGH */ ENT_HOMING_HIGH, LP_HOMING_HIGH, EXT_HOMING_HIGH, DISABLE, -1, -1, -1, STOP, STOP, LIMIT_LOW, LIMIT_HIGH, -1, -1, -1, -1,
  15. /* LIMIT_LOW */ ENT_LIMIT_LOW, -1, -1, -1, -1, -1, RUNNING, STOP, STOP, LIMIT_LOW, -1, -1, -1, -1, -1,
  16. /* LIMIT_HIGH */ ENT_LIMIT_HIGH, -1, -1, -1, -1, -1, RUNNING, STOP, STOP, -1, LIMIT_HIGH, -1, -1, -1, -1
  17. };
  18. // clang-format on
  19. Machine::begin( state_table, ELSE );
  20. stepper = new AccelStepper(1, step_pin, dir_pin);
  21. stepper->setMaxSpeed(max_speed);
  22. stepper->setAcceleration(acceleration);
  23. idle_timer.set(ATM_TIMER_OFF);
  24. position_timer.set(POSITION_SEND_TIMER);
  25. return *this;
  26. }
  27. /* Add C++ code for each internally handled event (input)
  28. * The code must return 1 to trigger the event
  29. */
  30. int Atm_AccelStepper::event( int id ) {
  31. //updateLimitSwitch();
  32. switch ( id ) {
  33. case EVT_DISABLE:
  34. return 0;
  35. case EVT_ENABLE:
  36. return 0;
  37. case EVT_ENABLED_TIMEOUT:
  38. return 0;
  39. case EVT_MOVE:
  40. return 0;
  41. case EVT_STOP:
  42. return 0;
  43. case EVT_EMERGENCY_STOP:
  44. return 0;
  45. case EVT_ON_LIMIT_LOW:
  46. switch(_limitLow_Mode) {
  47. case 0:
  48. //
  49. Serial.println("no limit");
  50. return 0;
  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. return limitLow_State;
  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. return limitLow_State;
  61. }
  62. case EVT_ON_LIMIT_HIGH:
  63. switch(_limitHigh_Mode) {
  64. case 0:
  65. return 0;
  66. case 1: //digital INPUT
  67. limitHigh_State = digitalRead(_limitHigh_Pin);
  68. limitHigh_State = _limitHigh_Reversed ? !limitHigh_State : limitHigh_State;
  69. return limitHigh_State;
  70. case 2:
  71. //Serial.println("analog");
  72. int analogTemp = analogRead(_limitHigh_Pin);
  73. limitHigh_State = (_limitHigh_Thresholds[0] < analogTemp) && (analogTemp < _limitHigh_Thresholds[1]);
  74. limitHigh_State = _limitHigh_Reversed ? !limitHigh_State : limitHigh_State;
  75. return limitHigh_State;
  76. }
  77. case EVT_ON_TARGET:
  78. return runMode ? 0 : _currentStep == _targetStep;
  79. case EVT_HOMING_LOW:
  80. return 0;
  81. case EVT_HOMING_HIGH:
  82. return 0;
  83. }
  84. return 0;
  85. }
  86. /* Add C++ code for each action
  87. * This generates the 'output' for the state machine
  88. *
  89. * Available connectors:
  90. * push( connectors, ON_CHANGEPOSITION, 0, <v>, <up> );
  91. * push( connectors, ON_CHANGESTATE, 0, <v>, <up> );
  92. * push( connectors, ON_ONLIMITHIGH, 0, <v>, <up> );
  93. * push( connectors, ON_ONLIMITLOW, 0, <v>, <up> );
  94. * push( connectors, ON_ONTARGET, 0, <v>, <up> );
  95. * push( connectors, ON_STOP, 0, <v>, <up> );
  96. */
  97. void Atm_AccelStepper::action( int id ) {
  98. switch ( id ) {
  99. case ENT_DISABLED:
  100. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  101. enabled = _enableReversed ? HIGH : LOW;
  102. digitalWrite(_enablePin, enabled);
  103. return;
  104. case ENT_ENABLED:
  105. _isHoming = 0 ;
  106. if(last_trigger == EVT_ON_TARGET){push( connectors, ON_ONTARGET, 0, _currentStep, 0 );};
  107. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  108. enabled = _enableReversed ? LOW : HIGH ;
  109. digitalWrite(_enablePin, enabled);
  110. return;
  111. case ENT_RUNNING:
  112. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  113. _isHoming = 0;
  114. //push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
  115. position_timer.setFromNow(this, POSITION_SEND_TIMER);
  116. return;
  117. case LP_RUNNING:
  118. stepper_update();
  119. return;
  120. case ENT_STOP:
  121. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  122. if (last_trigger == EVT_STOP) {
  123. runMode = 0 ;
  124. stepper->stop();
  125. _targetStep = stepper->targetPosition();
  126. push( connectors, ON_STOP, 0, 0, 0 );
  127. }
  128. if (last_trigger == EVT_EMERGENCY_STOP) {
  129. _currentStep = stepper->currentPosition();
  130. _targetStep = _currentStep ;
  131. stepper->moveTo(_targetStep);
  132. stepper->setSpeed(0);
  133. push( connectors, ON_STOP, 0, 1, 0 );
  134. }
  135. return;
  136. case LP_STOP:
  137. stepper_update();
  138. _currentStep = stepper->currentPosition();
  139. return;
  140. case ENT_HOMING_LOW:
  141. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  142. runMode = 1;
  143. _isHoming = 1 ;
  144. stepper->setSpeed(-1*homing_speed);
  145. return;
  146. case LP_HOMING_LOW:
  147. stepper_update();
  148. return;
  149. case EXT_HOMING_LOW:
  150. if(last_trigger == EVT_ON_LIMIT_LOW) {
  151. stepper->setCurrentPosition(0);
  152. _currentStep = 0;
  153. Serial.println("homing low done");
  154. }
  155. else{Serial.println("homing low failed");}
  156. _targetStep = _currentStep;
  157. return;
  158. case ENT_HOMING_HIGH:
  159. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  160. runMode = 1;
  161. _isHoming = 2 ;
  162. stepper->setSpeed(homing_speed);
  163. return;
  164. case LP_HOMING_HIGH:
  165. stepper_update();
  166. return;
  167. case EXT_HOMING_HIGH:
  168. if(last_trigger == EVT_ON_LIMIT_HIGH) {
  169. _maxStep = stepper->currentPosition();
  170. _currentStep = _maxStep;
  171. Serial.println("homing high done");
  172. }
  173. else{Serial.println("homing high failed");}
  174. _targetStep = _currentStep;
  175. return;
  176. case ENT_LIMIT_LOW:
  177. push( connectors, ON_ONLIMITLOW, 0, 0, 0 );
  178. //stop motor if going down, allow going up
  179. if(_limitLow_Hard && (stepper->speed()<0) ) {trigger(EVT_EMERGENCY_STOP);}
  180. else{
  181. stepper_update();
  182. switch(_isHoming) trigger.EVT_HOMINGtrigger(EVT_MOVE);}
  183. return;
  184. case ENT_LIMIT_HIGH:
  185. push( connectors, ON_ONLIMITHIGH, 0, 1, 0 );
  186. if(_limitHigh_Hard && (stepper->speed()>0)) {trigger(EVT_EMERGENCY_STOP);}
  187. else{stepper_update(); trigger(EVT_MOVE);}
  188. return;
  189. }
  190. }
  191. /* Optionally override the default trigger() method
  192. * Control how your machine processes triggers
  193. */
  194. Atm_AccelStepper& Atm_AccelStepper::trigger( int event ) {
  195. Machine::trigger( event );
  196. return *this;
  197. }
  198. /* Optionally override the default state() method
  199. * Control what the machine returns when another process requests its state
  200. */
  201. int Atm_AccelStepper::state( void ) {
  202. return Machine::state();
  203. }
  204. /* Nothing customizable below this line
  205. ************************************************************************************************
  206. */
  207. /* Still I'll customize a little just here
  208. */
  209. void Atm_AccelStepper::stepper_update(void) {
  210. switch (runMode) {
  211. case 0: //positional modae
  212. stepper->run();
  213. break;
  214. case 1: // speed mode
  215. stepper->runSpeed();
  216. break;
  217. }
  218. long int tempStep = stepper->currentPosition();
  219. if (tempStep != _currentStep){
  220. _currentStep = tempStep;
  221. if (position_timer.expired(this)){
  222. push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
  223. position_timer.setFromNow(this, POSITION_SEND_TIMER);
  224. }
  225. }
  226. }
  227. Atm_AccelStepper& Atm_AccelStepper::setMaxSpeed( long int maxSpeed){
  228. max_speed = maxSpeed ;
  229. stepper->setMaxSpeed(max_speed);
  230. return *this ;
  231. }
  232. Atm_AccelStepper& Atm_AccelStepper::setHomingSpeed(long int homingSpeed){
  233. homing_speed = homingSpeed ;
  234. return *this ;
  235. }
  236. Atm_AccelStepper& Atm_AccelStepper::setAcceleration(long int acc){
  237. acceleration = acc ;
  238. stepper->setAcceleration(max_speed);
  239. return *this ;
  240. }
  241. Atm_AccelStepper& Atm_AccelStepper::position_refresh(long int refresh_ms){
  242. POSITION_SEND_TIMER = refresh_ms ;
  243. return *this ;
  244. }
  245. Atm_AccelStepper& Atm_AccelStepper::move( long int stepRel) {
  246. _targetStep = _currentStep + stepRel;
  247. runMode = 0;
  248. _isHoming = 0;
  249. //Serial.println(_targetStep);
  250. stepper->moveTo(_targetStep);
  251. enable();
  252. trigger( EVT_MOVE );
  253. return *this;
  254. }
  255. Atm_AccelStepper& Atm_AccelStepper::moveTo( long int stepAbs) {
  256. _targetStep = stepAbs;
  257. _isHoming = 0 ;
  258. runMode = 0;
  259. stepper->moveTo(_targetStep);
  260. enable();
  261. trigger( EVT_MOVE );
  262. return *this;
  263. }
  264. Atm_AccelStepper& Atm_AccelStepper::rotate( long int speed) {
  265. runMode = 1;
  266. _isHoming = 0 ;
  267. stepper->setSpeed( speed);
  268. enable();
  269. trigger( EVT_MOVE );
  270. return *this;
  271. }
  272. Atm_AccelStepper& Atm_AccelStepper::homing( bool direction ){
  273. enable();
  274. direction == 1 ? _isHoming = 2 : _isHoming = 1;
  275. direction == 1 ? this->trigger(EVT_HOMING_HIGH) : this->trigger(EVT_HOMING_LOW);
  276. return *this;
  277. }
  278. // Atm_AccelStepper& Atm_AccelStepper::rotationReversed(bool reversed){
  279. // _rotationReversed = reversed ? -1 : 1 ;
  280. // }
  281. Atm_AccelStepper& Atm_AccelStepper::setEnablePin( int enablePin ){
  282. _enablePin = enablePin ;
  283. pinMode(_enablePin, OUTPUT);
  284. return *this;
  285. }
  286. Atm_AccelStepper& Atm_AccelStepper::pinReversed( bool directionInvert,
  287. bool stepInvert, bool enableInvert){
  288. stepper->setPinsInverted(directionInvert, stepInvert, enableInvert);
  289. return *this;
  290. }
  291. Atm_AccelStepper& Atm_AccelStepper::limitLow_set(int mode, int pin, int reversed){
  292. _limitLow_Mode = mode ;
  293. _limitLow_Pin = pin ;
  294. _limitLow_Reversed = reversed ;
  295. if (_limitLow_Mode==1) {pinMode(_limitLow_Pin, INPUT_PULLUP);}
  296. if (_limitLow_Mode==2) {pinMode(_limitLow_Pin, INPUT);}
  297. return *this;
  298. }
  299. Atm_AccelStepper& Atm_AccelStepper::limitLow_isHard(bool hardlimit){
  300. _limitLow_Hard = hardlimit;
  301. return *this;
  302. }
  303. Atm_AccelStepper& Atm_AccelStepper::limitLow_setThresholds (int threshold_low, int threshold_high){
  304. _limitLow_Thresholds[0] = threshold_low ;
  305. _limitLow_Thresholds[1] = threshold_high ;
  306. return *this;
  307. }
  308. Atm_AccelStepper& Atm_AccelStepper::limitHigh_set(int mode, int pin, int reversed){
  309. _limitHigh_Mode = mode ;
  310. _limitHigh_Pin = pin ;
  311. _limitHigh_Reversed = reversed ;
  312. if (_limitHigh_Mode==1) {pinMode(_limitHigh_Pin, INPUT_PULLUP);}
  313. if (_limitHigh_Mode==2) {pinMode(_limitHigh_Pin, INPUT);}
  314. return *this;
  315. }
  316. Atm_AccelStepper& Atm_AccelStepper::limitHigh_isHard(bool hardlimit){
  317. _limitHigh_Hard = hardlimit;
  318. return *this;
  319. }
  320. Atm_AccelStepper& Atm_AccelStepper::limitHigh_setThresholds (int threshold_low, int threshold_high){
  321. _limitHigh_Thresholds[0] = threshold_low ;
  322. _limitHigh_Thresholds[1] = threshold_high ;
  323. return *this;
  324. }
  325. /* Public event methods
  326. *
  327. */
  328. Atm_AccelStepper& Atm_AccelStepper::disable() {
  329. trigger( EVT_DISABLE );
  330. return *this;
  331. }
  332. Atm_AccelStepper& Atm_AccelStepper::enable() {
  333. trigger( EVT_ENABLE );
  334. return *this;
  335. }
  336. // Atm_AccelStepper& Atm_AccelStepper::move() {
  337. // trigger( EVT_MOVE );
  338. // return *this;
  339. // }
  340. Atm_AccelStepper& Atm_AccelStepper::stop() {
  341. trigger( EVT_STOP );
  342. return *this;
  343. }
  344. Atm_AccelStepper& Atm_AccelStepper::emergency_stop() {
  345. trigger( EVT_EMERGENCY_STOP );
  346. return *this;
  347. }
  348. Atm_AccelStepper& Atm_AccelStepper::on_limit_low() {
  349. trigger( EVT_ON_LIMIT_LOW );
  350. return *this;
  351. }
  352. Atm_AccelStepper& Atm_AccelStepper::on_limit_high() {
  353. trigger( EVT_ON_LIMIT_HIGH );
  354. return *this;
  355. }
  356. Atm_AccelStepper& Atm_AccelStepper::on_target() {
  357. trigger( EVT_ON_TARGET );
  358. return *this;
  359. }
  360. /*
  361. * onChangeposition() push connector variants ( slots 1, autostore 0, broadcast 0 )
  362. */
  363. Atm_AccelStepper& Atm_AccelStepper::onChangeposition( Machine& machine, int event ) {
  364. onPush( connectors, ON_CHANGEPOSITION, 0, 1, 1, machine, event );
  365. return *this;
  366. }
  367. Atm_AccelStepper& Atm_AccelStepper::onChangeposition( atm_cb_push_t callback, int idx ) {
  368. onPush( connectors, ON_CHANGEPOSITION, 0, 1, 1, callback, idx );
  369. return *this;
  370. }
  371. /*
  372. * onChangestate() push connector variants ( slots 1, autostore 0, broadcast 0 )
  373. */
  374. Atm_AccelStepper& Atm_AccelStepper::onChangestate( Machine& machine, int event ) {
  375. onPush( connectors, ON_CHANGESTATE, 0, 1, 1, machine, event );
  376. return *this;
  377. }
  378. Atm_AccelStepper& Atm_AccelStepper::onChangestate( atm_cb_push_t callback, int idx ) {
  379. onPush( connectors, ON_CHANGESTATE, 0, 1, 1, callback, idx );
  380. return *this;
  381. }
  382. /*
  383. * onOnlimithigh() push connector variants ( slots 1, autostore 0, broadcast 0 )
  384. */
  385. Atm_AccelStepper& Atm_AccelStepper::onOnlimithigh( Machine& machine, int event ) {
  386. onPush( connectors, ON_ONLIMITHIGH, 0, 1, 1, machine, event );
  387. return *this;
  388. }
  389. Atm_AccelStepper& Atm_AccelStepper::onOnlimithigh( atm_cb_push_t callback, int idx ) {
  390. onPush( connectors, ON_ONLIMITHIGH, 0, 1, 1, callback, idx );
  391. return *this;
  392. }
  393. /*
  394. * onOnlimitlow() push connector variants ( slots 1, autostore 0, broadcast 0 )
  395. */
  396. Atm_AccelStepper& Atm_AccelStepper::onOnlimitlow( Machine& machine, int event ) {
  397. onPush( connectors, ON_ONLIMITLOW, 0, 1, 1, machine, event );
  398. return *this;
  399. }
  400. Atm_AccelStepper& Atm_AccelStepper::onOnlimitlow( atm_cb_push_t callback, int idx ) {
  401. onPush( connectors, ON_ONLIMITLOW, 0, 1, 1, callback, idx );
  402. return *this;
  403. }
  404. /*
  405. * onOntarget() push connector variants ( slots 1, autostore 0, broadcast 0 )
  406. */
  407. Atm_AccelStepper& Atm_AccelStepper::onOntarget( Machine& machine, int event ) {
  408. onPush( connectors, ON_ONTARGET, 0, 1, 1, machine, event );
  409. return *this;
  410. }
  411. Atm_AccelStepper& Atm_AccelStepper::onOntarget( atm_cb_push_t callback, int idx ) {
  412. onPush( connectors, ON_ONTARGET, 0, 1, 1, callback, idx );
  413. return *this;
  414. }
  415. /*
  416. * onStop() push connector variants ( slots 1, autostore 0, broadcast 0 )
  417. */
  418. Atm_AccelStepper& Atm_AccelStepper::onStop( Machine& machine, int event ) {
  419. onPush( connectors, ON_STOP, 0, 1, 1, machine, event );
  420. return *this;
  421. }
  422. Atm_AccelStepper& Atm_AccelStepper::onStop( atm_cb_push_t callback, int idx ) {
  423. onPush( connectors, ON_STOP, 0, 1, 1, callback, idx );
  424. return *this;
  425. }
  426. Atm_AccelStepper& Atm_AccelStepper::onOnhominglow( Machine& machine, int event ) {
  427. onPush( connectors, ON_ONTARGET, 0, 1, 1, machine, event );
  428. return *this;
  429. }
  430. Atm_AccelStepper& Atm_AccelStepper::onOnhominglow( atm_cb_push_t callback, int idx ) {
  431. onPush( connectors, ON_ONTARGET, 0, 1, 1, callback, idx );
  432. return *this;
  433. }
  434. Atm_AccelStepper& Atm_AccelStepper::onOnhominghigh( Machine& machine, int event ) {
  435. onPush( connectors, ON_ONTARGET, 0, 1, 1, machine, event );
  436. return *this;
  437. }
  438. Atm_AccelStepper& Atm_AccelStepper::onOnhominghigh( atm_cb_push_t callback, int idx ) {
  439. onPush( connectors, ON_ONTARGET, 0, 1, 1, callback, idx );
  440. return *this;
  441. }
  442. /* State trace method
  443. * Sets the symbol table and the default logging method for serial monitoring
  444. */
  445. Atm_AccelStepper& Atm_AccelStepper::trace( Stream & stream ) {
  446. Machine::setTrace( &stream, atm_serial_debug::trace,
  447. "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" );
  448. return *this;
  449. }