Atm_AccelStepper.cpp 16 KB

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