Atm_AccelStepper.cpp 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490
  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, -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 _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. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  106. enabled = _enableReversed ? LOW : HIGH ;
  107. digitalWrite(_enablePin, enabled);
  108. if(last_trigger == EVT_ON_TARGET){push( connectors, ON_ONTARGET, 0, stepper->currentPosition(), 0 );};
  109. return;
  110. case ENT_RUNNING:
  111. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  112. push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
  113. position_timer.setFromNow(this, POSITION_SEND_TIMER);
  114. return;
  115. case LP_RUNNING:
  116. stepper_update();
  117. return;
  118. case ENT_STOP:
  119. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  120. if (last_trigger == EVT_STOP) {
  121. stepper->stop();
  122. _targetStep = stepper->targetPosition();
  123. push( connectors, ON_STOP, 0, 0, 0 );
  124. }
  125. if (last_trigger == EVT_EMERGENCY_STOP) {
  126. _currentStep = stepper->currentPosition();
  127. _targetStep = _currentStep ;
  128. stepper->moveTo(_targetStep);
  129. stepper->setSpeed(0);
  130. push( connectors, ON_STOP, 0, 1, 0 );
  131. }
  132. return;
  133. case LP_STOP:
  134. stepper_update();
  135. _currentStep = stepper->currentPosition();
  136. return;
  137. case ENT_HOMING_LOW:
  138. runMode = 1;
  139. stepper->setSpeed(-1*homing_speed);
  140. return;
  141. case LP_HOMING_LOW:
  142. stepper_update();
  143. return;
  144. case EXT_HOMING_LOW:
  145. if(last_trigger == EVT_ON_LIMIT_LOW) {
  146. stepper->setCurrentPosition(0);
  147. _currentStep = 0;
  148. Serial.println("homing low done");
  149. }
  150. else{Serial.println("homing low failed");}
  151. return;
  152. case ENT_HOMING_HIGH:
  153. runMode = 1;
  154. stepper->setSpeed(homing_speed);
  155. return;
  156. case LP_HOMING_HIGH:
  157. stepper_update();
  158. return;
  159. case EXT_HOMING_HIGH:
  160. if(last_trigger == EVT_ON_LIMIT_HIGH) {
  161. _maxStep = stepper->currentPosition();
  162. _currentStep = _maxStep;
  163. Serial.println("homing high done");
  164. }
  165. else{Serial.println("homing high failed");}
  166. return;
  167. case ENT_LIMIT_LOW:
  168. push( connectors, ON_ONLIMITLOW, 0, 0, 0 );
  169. //stop motor if going down, allow going up
  170. if(_limitLow_Hard && (stepper->speed() < 0)) {trigger(EVT_EMERGENCY_STOP);}
  171. else{stepper_update(); trigger(EVT_MOVE);}
  172. return;
  173. case ENT_LIMIT_HIGH:
  174. push( connectors, ON_ONLIMITHIGH, 0, 1, 0 );
  175. if(_limitHigh_Hard && (stepper->speed() > 0)) {trigger(EVT_EMERGENCY_STOP);}
  176. else{stepper_update() ; trigger(EVT_MOVE);}
  177. return;
  178. }
  179. }
  180. /* Optionally override the default trigger() method
  181. * Control how your machine processes triggers
  182. */
  183. Atm_AccelStepper& Atm_AccelStepper::trigger( int event ) {
  184. Machine::trigger( event );
  185. return *this;
  186. }
  187. /* Optionally override the default state() method
  188. * Control what the machine returns when another process requests its state
  189. */
  190. int Atm_AccelStepper::state( void ) {
  191. return Machine::state();
  192. }
  193. /* Nothing customizable below this line
  194. ************************************************************************************************
  195. */
  196. /* Still I'll customize a little just here
  197. */
  198. void Atm_AccelStepper::stepper_update(void) {
  199. switch (runMode) {
  200. case 0: //positional modae
  201. stepper->run();
  202. break;
  203. case 1: // speed mode
  204. stepper->runSpeed();
  205. break;
  206. }
  207. long int tempStep = stepper->currentPosition();
  208. if (tempStep != _currentStep){
  209. _currentStep = tempStep;
  210. if (position_timer.expired(this)){
  211. push(connectors, ON_CHANGEPOSITION, 0, _currentStep, stepper->speed());
  212. position_timer.setFromNow(this, POSITION_SEND_TIMER);
  213. }
  214. }
  215. }
  216. Atm_AccelStepper& Atm_AccelStepper::setMaxSpeed( long int maxSpeed){
  217. max_speed = maxSpeed ;
  218. stepper->setMaxSpeed(max_speed);
  219. return *this ;
  220. }
  221. Atm_AccelStepper& Atm_AccelStepper::setHomingSpeed(long int homingSpeed){
  222. homing_speed = homingSpeed ;
  223. return *this ;
  224. }
  225. Atm_AccelStepper& Atm_AccelStepper::setAcceleration(long int acc){
  226. acceleration = acc ;
  227. stepper->setAcceleration(max_speed);
  228. return *this ;
  229. }
  230. Atm_AccelStepper& Atm_AccelStepper::position_refresh(long int refresh_ms){
  231. POSITION_SEND_TIMER = refresh_ms ;
  232. return *this ;
  233. }
  234. Atm_AccelStepper& Atm_AccelStepper::move( long int stepRel) {
  235. _targetStep = _currentStep + stepRel;
  236. runMode = 0;
  237. //Serial.println(_targetStep);
  238. stepper->move(_targetStep);
  239. enable();
  240. trigger( EVT_MOVE );
  241. return *this;
  242. }
  243. Atm_AccelStepper& Atm_AccelStepper::moveTo( long int stepAbs) {
  244. _targetStep = stepAbs;
  245. runMode = 0;
  246. stepper->moveTo(_targetStep);
  247. enable();
  248. trigger( EVT_MOVE );
  249. return *this;
  250. }
  251. Atm_AccelStepper& Atm_AccelStepper::rotate( long int speed) {
  252. runMode = 1;
  253. stepper->setSpeed(speed);
  254. enable();
  255. trigger( EVT_MOVE );
  256. return *this;
  257. }
  258. Atm_AccelStepper& Atm_AccelStepper::setEnablePin( int enablePin ){
  259. _enablePin = enablePin ;
  260. pinMode(_enablePin, OUTPUT);
  261. return *this;
  262. }
  263. Atm_AccelStepper& Atm_AccelStepper::enableReversed( bool reverse ){
  264. _enableReversed = reverse ;
  265. return *this;
  266. }
  267. Atm_AccelStepper& Atm_AccelStepper::limitLow_set(int mode, int pin, int reversed){
  268. _limitLow_Mode = mode ;
  269. _limitLow_Pin = pin ;
  270. _limitLow_Reversed = reversed ;
  271. if (_limitLow_Mode==1) {pinMode(_limitLow_Pin, INPUT_PULLUP);}
  272. if (_limitLow_Mode==2) {pinMode(_limitLow_Pin, INPUT);}
  273. return *this;
  274. }
  275. Atm_AccelStepper& Atm_AccelStepper::limitLow_isHard(bool hardlimit){
  276. _limitLow_Hard = hardlimit;
  277. }
  278. Atm_AccelStepper& Atm_AccelStepper::limitLow_setThresholds (int threshold_low, int threshold_high){
  279. _limitLow_Thresholds[0] = threshold_low ;
  280. _limitLow_Thresholds[1] = threshold_high ;
  281. return *this;
  282. }
  283. Atm_AccelStepper& Atm_AccelStepper::limitHigh_set(int mode, int pin, int reversed){
  284. _limitHigh_Mode = mode ;
  285. _limitHigh_Pin = pin ;
  286. _limitHigh_Reversed = reversed ;
  287. if (_limitHigh_Mode==1) {pinMode(_limitHigh_Pin, INPUT_PULLUP);}
  288. if (_limitHigh_Mode==2) {pinMode(_limitHigh_Pin, INPUT);}
  289. return *this;
  290. }
  291. Atm_AccelStepper& Atm_AccelStepper::limitHigh_isHard(bool hardlimit){
  292. _limitHigh_Hard = hardlimit;
  293. }
  294. Atm_AccelStepper& Atm_AccelStepper::limitHigh_setThresholds (int threshold_low, int threshold_high){
  295. _limitHigh_Thresholds[0] = threshold_low ;
  296. _limitHigh_Thresholds[1] = threshold_high ;
  297. return *this;
  298. }
  299. /* Public event methods
  300. *
  301. */
  302. Atm_AccelStepper& Atm_AccelStepper::disable() {
  303. trigger( EVT_DISABLE );
  304. return *this;
  305. }
  306. Atm_AccelStepper& Atm_AccelStepper::enable() {
  307. trigger( EVT_ENABLE );
  308. return *this;
  309. }
  310. // Atm_AccelStepper& Atm_AccelStepper::move() {
  311. // trigger( EVT_MOVE );
  312. // return *this;
  313. // }
  314. Atm_AccelStepper& Atm_AccelStepper::stop() {
  315. trigger( EVT_STOP );
  316. return *this;
  317. }
  318. Atm_AccelStepper& Atm_AccelStepper::emergency_stop() {
  319. trigger( EVT_EMERGENCY_STOP );
  320. return *this;
  321. }
  322. Atm_AccelStepper& Atm_AccelStepper::on_limit_low() {
  323. trigger( EVT_ON_LIMIT_LOW );
  324. return *this;
  325. }
  326. Atm_AccelStepper& Atm_AccelStepper::on_limit_high() {
  327. trigger( EVT_ON_LIMIT_HIGH );
  328. return *this;
  329. }
  330. Atm_AccelStepper& Atm_AccelStepper::on_target() {
  331. trigger( EVT_ON_TARGET );
  332. return *this;
  333. }
  334. /*
  335. * onChangeposition() push connector variants ( slots 1, autostore 0, broadcast 0 )
  336. */
  337. Atm_AccelStepper& Atm_AccelStepper::onChangeposition( Machine& machine, int event ) {
  338. onPush( connectors, ON_CHANGEPOSITION, 0, 1, 1, machine, event );
  339. return *this;
  340. }
  341. Atm_AccelStepper& Atm_AccelStepper::onChangeposition( atm_cb_push_t callback, int idx ) {
  342. onPush( connectors, ON_CHANGEPOSITION, 0, 1, 1, callback, idx );
  343. return *this;
  344. }
  345. /*
  346. * onChangestate() push connector variants ( slots 1, autostore 0, broadcast 0 )
  347. */
  348. Atm_AccelStepper& Atm_AccelStepper::onChangestate( Machine& machine, int event ) {
  349. onPush( connectors, ON_CHANGESTATE, 0, 1, 1, machine, event );
  350. return *this;
  351. }
  352. Atm_AccelStepper& Atm_AccelStepper::onChangestate( atm_cb_push_t callback, int idx ) {
  353. onPush( connectors, ON_CHANGESTATE, 0, 1, 1, callback, idx );
  354. return *this;
  355. }
  356. /*
  357. * onOnlimithigh() push connector variants ( slots 1, autostore 0, broadcast 0 )
  358. */
  359. Atm_AccelStepper& Atm_AccelStepper::onOnlimithigh( Machine& machine, int event ) {
  360. onPush( connectors, ON_ONLIMITHIGH, 0, 1, 1, machine, event );
  361. return *this;
  362. }
  363. Atm_AccelStepper& Atm_AccelStepper::onOnlimithigh( atm_cb_push_t callback, int idx ) {
  364. onPush( connectors, ON_ONLIMITHIGH, 0, 1, 1, callback, idx );
  365. return *this;
  366. }
  367. /*
  368. * onOnlimitlow() push connector variants ( slots 1, autostore 0, broadcast 0 )
  369. */
  370. Atm_AccelStepper& Atm_AccelStepper::onOnlimitlow( Machine& machine, int event ) {
  371. onPush( connectors, ON_ONLIMITLOW, 0, 1, 1, machine, event );
  372. return *this;
  373. }
  374. Atm_AccelStepper& Atm_AccelStepper::onOnlimitlow( atm_cb_push_t callback, int idx ) {
  375. onPush( connectors, ON_ONLIMITLOW, 0, 1, 1, callback, idx );
  376. return *this;
  377. }
  378. /*
  379. * onOntarget() push connector variants ( slots 1, autostore 0, broadcast 0 )
  380. */
  381. Atm_AccelStepper& Atm_AccelStepper::onOntarget( Machine& machine, int event ) {
  382. onPush( connectors, ON_ONTARGET, 0, 1, 1, machine, event );
  383. return *this;
  384. }
  385. Atm_AccelStepper& Atm_AccelStepper::onOntarget( atm_cb_push_t callback, int idx ) {
  386. onPush( connectors, ON_ONTARGET, 0, 1, 1, callback, idx );
  387. return *this;
  388. }
  389. /*
  390. * onStop() push connector variants ( slots 1, autostore 0, broadcast 0 )
  391. */
  392. Atm_AccelStepper& Atm_AccelStepper::onStop( Machine& machine, int event ) {
  393. onPush( connectors, ON_STOP, 0, 1, 1, machine, event );
  394. return *this;
  395. }
  396. Atm_AccelStepper& Atm_AccelStepper::onStop( atm_cb_push_t callback, int idx ) {
  397. onPush( connectors, ON_STOP, 0, 1, 1, callback, idx );
  398. return *this;
  399. }
  400. Atm_AccelStepper& Atm_AccelStepper::onOnhominglow( Machine& machine, int event ) {
  401. onPush( connectors, ON_ONTARGET, 0, 1, 1, machine, event );
  402. return *this;
  403. }
  404. Atm_AccelStepper& Atm_AccelStepper::onOnhominglow( atm_cb_push_t callback, int idx ) {
  405. onPush( connectors, ON_ONTARGET, 0, 1, 1, callback, idx );
  406. return *this;
  407. }
  408. Atm_AccelStepper& Atm_AccelStepper::onOnhominghigh( Machine& machine, int event ) {
  409. onPush( connectors, ON_ONTARGET, 0, 1, 1, machine, event );
  410. return *this;
  411. }
  412. Atm_AccelStepper& Atm_AccelStepper::onOnhominghigh( atm_cb_push_t callback, int idx ) {
  413. onPush( connectors, ON_ONTARGET, 0, 1, 1, callback, idx );
  414. return *this;
  415. }
  416. /* State trace method
  417. * Sets the symbol table and the default logging method for serial monitoring
  418. */
  419. Atm_AccelStepper& Atm_AccelStepper::trace( Stream & stream ) {
  420. Machine::setTrace( &stream, atm_serial_debug::trace,
  421. "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" );
  422. return *this;
  423. }