Atm_AccelStepper.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  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 ELSE */
  9. /* DISABLED */ ENT_DISABLED, -1, -1, -1, ENABLED, -1, RUNNING, -1, -1, -1, -1, -1, -1,
  10. /* ENABLED */ ENT_ENABLED, -1, -1, DISABLE, -1, DISABLE, RUNNING, STOP, STOP, -1, -1, -1, -1,
  11. /* RUNNING */ ENT_RUNNING, LP_RUNNING, -1, DISABLE, -1, -1, RUNNING, STOP, STOP, LIMIT_LOW, LIMIT_HIGH, ENABLED, -1,
  12. /* STOP */ ENT_STOP, LP_STOP, -1, DISABLE, -1, -1, RUNNING, -1, -1, -1, -1, ENABLED, -1,
  13. /* HOMING_LOW */ ENT_HOMING_LOW, -1, EXT_HOMING_LOW, DISABLE, -1, -1, -1, STOP, STOP, STOP, -1, -1, -1,
  14. /* HOMING_HIGH */ ENT_HOMING_HIGH, -1, EXT_HOMING_HIGH, DISABLE, -1, -1, -1, STOP, STOP, -1, STOP, -1, -1,
  15. /* LIMIT_LOW */ ENT_LIMIT_LOW, -1, -1, -1, -1, -1, RUNNING, STOP, STOP, LIMIT_LOW, -1, -1, -1,
  16. /* LIMIT_HIGH */ ENT_LIMIT_HIGH, -1, -1, -1, -1, -1, RUNNING, STOP, STOP, -1, LIMIT_HIGH, -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(1000);
  22. stepper->setAcceleration(100);
  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. Serial.print("analog ");
  60. Serial.print(analogTemp);
  61. Serial.print(" state ");
  62. Serial.println(limitLow_State);
  63. return limitLow_State;
  64. }
  65. case EVT_ON_LIMIT_HIGH:
  66. switch(_limitHigh_Mode) {
  67. case 0:
  68. return 0;
  69. case 1: //digital INPUT
  70. limitHigh_State = digitalRead(_limitHigh_Pin);
  71. limitHigh_State = _limitHigh_Reversed ? !limitHigh_State : limitHigh_State;
  72. return limitHigh_State;
  73. case 2:
  74. //Serial.println("analog");
  75. int analogTemp = analogRead(_limitHigh_Pin);
  76. limitHigh_State = (_limitHigh_Thresholds[0] < analogTemp) && (analogTemp < _limitHigh_Thresholds[1]);
  77. limitHigh_State = _limitHigh_Reversed ? !limitHigh_State : limitHigh_State;
  78. return limitHigh_State;
  79. }
  80. case EVT_ON_TARGET:
  81. return _currentStep == _targetStep;;
  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. long int tempStep ;
  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. return;
  112. case LP_RUNNING:
  113. switch (runMode) {
  114. case 0:
  115. stepper->run();
  116. break;
  117. case 1:
  118. stepper->runSpeed();
  119. break;
  120. }
  121. tempStep = stepper->currentPosition();
  122. if (tempStep != _currentStep){
  123. _currentStep = tempStep;
  124. push(connectors, ON_CHANGEPOSITION, 0, _currentStep, 0);
  125. }
  126. return;
  127. case ENT_STOP:
  128. push(connectors, ON_CHANGESTATE, 0, state(), 0);
  129. if (last_trigger == EVT_STOP) {
  130. stepper->stop();
  131. _targetStep = stepper->targetPosition();
  132. push( connectors, ON_STOP, 0, 0, 0 );
  133. }
  134. if (last_trigger == EVT_EMERGENCY_STOP) {
  135. _currentStep = stepper->currentPosition();
  136. _targetStep = _currentStep ;
  137. stepper->moveTo(_targetStep);
  138. stepper->setSpeed(0);
  139. push( connectors, ON_STOP, 0, 1, 0 );
  140. }
  141. return;
  142. case LP_STOP:
  143. stepper->run();
  144. _currentStep = stepper->currentPosition();
  145. return;
  146. case ENT_HOMING_LOW:
  147. return;
  148. case EXT_HOMING_LOW:
  149. return;
  150. case ENT_HOMING_HIGH:
  151. return;
  152. case EXT_HOMING_HIGH:
  153. return;
  154. case ENT_LIMIT_LOW:
  155. push( connectors, ON_ONLIMITLOW, 0, 0, 0 );
  156. //stop motor if going down, allow going up
  157. stepper->speed() < 0 ? trigger(EVT_EMERGENCY_STOP) : trigger(EVT_MOVE);
  158. return;
  159. case ENT_LIMIT_HIGH:
  160. push( connectors, ON_ONLIMITHIGH, 0, 1, 0 );
  161. stepper->speed() > 0 ? trigger(EVT_EMERGENCY_STOP) : trigger(EVT_MOVE);
  162. return;
  163. }
  164. }
  165. /* Optionally override the default trigger() method
  166. * Control how your machine processes triggers
  167. */
  168. Atm_AccelStepper& Atm_AccelStepper::trigger( int event ) {
  169. Machine::trigger( event );
  170. return *this;
  171. }
  172. /* Optionally override the default state() method
  173. * Control what the machine returns when another process requests its state
  174. */
  175. int Atm_AccelStepper::state( void ) {
  176. return Machine::state();
  177. }
  178. /* Nothing customizable below this line
  179. ************************************************************************************************
  180. */
  181. /* Still I'll customize a little just here
  182. */
  183. Atm_AccelStepper& Atm_AccelStepper::move( long int stepRel) {
  184. _targetStep = _currentStep + stepRel;
  185. //Serial.println(_targetStep);
  186. stepper->move(_targetStep);
  187. enable();
  188. trigger( EVT_MOVE );
  189. return *this;
  190. }
  191. Atm_AccelStepper& Atm_AccelStepper::moveTo( long int stepAbs) {
  192. _targetStep = stepAbs;
  193. stepper->moveTo(_targetStep);
  194. enable();
  195. trigger( EVT_MOVE );
  196. return *this;
  197. }
  198. Atm_AccelStepper& Atm_AccelStepper::rotate( long int speed) {
  199. trigger( EVT_MOVE );
  200. return *this;
  201. }
  202. Atm_AccelStepper& Atm_AccelStepper::setEnablePin( int enablePin ){
  203. _enablePin = enablePin ;
  204. pinMode(_enablePin, OUTPUT);
  205. return *this;
  206. }
  207. Atm_AccelStepper& Atm_AccelStepper::enableReversed( bool reverse ){
  208. _enableReversed = reverse ;
  209. return *this;
  210. }
  211. Atm_AccelStepper& Atm_AccelStepper::limitLow_set(int mode, int pin, int reversed){
  212. _limitLow_Mode = mode ;
  213. _limitLow_Pin = pin ;
  214. _limitLow_Reversed = reversed ;
  215. if (_limitLow_Mode==1) {pinMode(_limitLow_Pin, INPUT_PULLUP);}
  216. if (_limitLow_Mode==2) {pinMode(_limitLow_Pin, INPUT);}
  217. return *this;
  218. }
  219. Atm_AccelStepper& Atm_AccelStepper::limitLow_setThresholds (int threshold_low, int threshold_high){
  220. _limitLow_Thresholds[0] = threshold_low ;
  221. _limitLow_Thresholds[1] = threshold_high ;
  222. return *this;
  223. }
  224. Atm_AccelStepper& Atm_AccelStepper::limitHigh_set(int mode, int pin, int reversed){
  225. _limitHigh_Mode = mode ;
  226. _limitHigh_Pin = pin ;
  227. _limitHigh_Reversed = reversed ;
  228. if (_limitHigh_Mode==1) {pinMode(_limitHigh_Pin, INPUT_PULLUP);}
  229. if (_limitHigh_Mode==2) {pinMode(_limitHigh_Pin, INPUT);}
  230. return *this;
  231. }
  232. Atm_AccelStepper& Atm_AccelStepper::limitHigh_setThresholds (int threshold_low, int threshold_high){
  233. _limitHigh_Thresholds[0] = threshold_low ;
  234. _limitHigh_Thresholds[1] = threshold_high ;
  235. return *this;
  236. }
  237. /* Public event methods
  238. *
  239. */
  240. Atm_AccelStepper& Atm_AccelStepper::disable() {
  241. trigger( EVT_DISABLE );
  242. return *this;
  243. }
  244. Atm_AccelStepper& Atm_AccelStepper::enable() {
  245. trigger( EVT_ENABLE );
  246. return *this;
  247. }
  248. // Atm_AccelStepper& Atm_AccelStepper::move() {
  249. // trigger( EVT_MOVE );
  250. // return *this;
  251. // }
  252. Atm_AccelStepper& Atm_AccelStepper::stop() {
  253. trigger( EVT_STOP );
  254. return *this;
  255. }
  256. Atm_AccelStepper& Atm_AccelStepper::emergency_stop() {
  257. trigger( EVT_EMERGENCY_STOP );
  258. return *this;
  259. }
  260. Atm_AccelStepper& Atm_AccelStepper::on_limit_low() {
  261. trigger( EVT_ON_LIMIT_LOW );
  262. return *this;
  263. }
  264. Atm_AccelStepper& Atm_AccelStepper::on_limit_high() {
  265. trigger( EVT_ON_LIMIT_HIGH );
  266. return *this;
  267. }
  268. Atm_AccelStepper& Atm_AccelStepper::on_target() {
  269. trigger( EVT_ON_TARGET );
  270. return *this;
  271. }
  272. /*
  273. * onChangeposition() push connector variants ( slots 1, autostore 0, broadcast 0 )
  274. */
  275. Atm_AccelStepper& Atm_AccelStepper::onChangeposition( Machine& machine, int event ) {
  276. onPush( connectors, ON_CHANGEPOSITION, 0, 1, 1, machine, event );
  277. return *this;
  278. }
  279. Atm_AccelStepper& Atm_AccelStepper::onChangeposition( atm_cb_push_t callback, int idx ) {
  280. onPush( connectors, ON_CHANGEPOSITION, 0, 1, 1, callback, idx );
  281. return *this;
  282. }
  283. /*
  284. * onChangestate() push connector variants ( slots 1, autostore 0, broadcast 0 )
  285. */
  286. Atm_AccelStepper& Atm_AccelStepper::onChangestate( Machine& machine, int event ) {
  287. onPush( connectors, ON_CHANGESTATE, 0, 1, 1, machine, event );
  288. return *this;
  289. }
  290. Atm_AccelStepper& Atm_AccelStepper::onChangestate( atm_cb_push_t callback, int idx ) {
  291. onPush( connectors, ON_CHANGESTATE, 0, 1, 1, callback, idx );
  292. return *this;
  293. }
  294. /*
  295. * onOnlimithigh() push connector variants ( slots 1, autostore 0, broadcast 0 )
  296. */
  297. Atm_AccelStepper& Atm_AccelStepper::onOnlimithigh( Machine& machine, int event ) {
  298. onPush( connectors, ON_ONLIMITHIGH, 0, 1, 1, machine, event );
  299. return *this;
  300. }
  301. Atm_AccelStepper& Atm_AccelStepper::onOnlimithigh( atm_cb_push_t callback, int idx ) {
  302. onPush( connectors, ON_ONLIMITHIGH, 0, 1, 1, callback, idx );
  303. return *this;
  304. }
  305. /*
  306. * onOnlimitlow() push connector variants ( slots 1, autostore 0, broadcast 0 )
  307. */
  308. Atm_AccelStepper& Atm_AccelStepper::onOnlimitlow( Machine& machine, int event ) {
  309. onPush( connectors, ON_ONLIMITLOW, 0, 1, 1, machine, event );
  310. return *this;
  311. }
  312. Atm_AccelStepper& Atm_AccelStepper::onOnlimitlow( atm_cb_push_t callback, int idx ) {
  313. onPush( connectors, ON_ONLIMITLOW, 0, 1, 1, callback, idx );
  314. return *this;
  315. }
  316. /*
  317. * onOntarget() push connector variants ( slots 1, autostore 0, broadcast 0 )
  318. */
  319. Atm_AccelStepper& Atm_AccelStepper::onOntarget( Machine& machine, int event ) {
  320. onPush( connectors, ON_ONTARGET, 0, 1, 1, machine, event );
  321. return *this;
  322. }
  323. Atm_AccelStepper& Atm_AccelStepper::onOntarget( atm_cb_push_t callback, int idx ) {
  324. onPush( connectors, ON_ONTARGET, 0, 1, 1, callback, idx );
  325. return *this;
  326. }
  327. /*
  328. * onStop() push connector variants ( slots 1, autostore 0, broadcast 0 )
  329. */
  330. Atm_AccelStepper& Atm_AccelStepper::onStop( Machine& machine, int event ) {
  331. onPush( connectors, ON_STOP, 0, 1, 1, machine, event );
  332. return *this;
  333. }
  334. Atm_AccelStepper& Atm_AccelStepper::onStop( atm_cb_push_t callback, int idx ) {
  335. onPush( connectors, ON_STOP, 0, 1, 1, callback, idx );
  336. return *this;
  337. }
  338. /* State trace method
  339. * Sets the symbol table and the default logging method for serial monitoring
  340. */
  341. Atm_AccelStepper& Atm_AccelStepper::trace( Stream & stream ) {
  342. Machine::setTrace( &stream, atm_serial_debug::trace,
  343. "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\0ELSE\0DISABLED\0ENABLED\0RUNNING\0STOP\0HOMING_LOW\0HOMING_HIGH\0LIMIT_LOW\0LIMIT_HIGH" );
  344. return *this;
  345. }