Atm_AccelStepper.cpp 15 KB

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