Atm_AccelStepper.h 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. #pragma once
  2. //#ifdef AccelStepper_h
  3. #include <Automaton.h>
  4. #include "AccelStepper.h"
  5. class Atm_AccelStepper: public Machine {
  6. public:
  7. enum { DISABLE, ENABLED, RUNNING, STOP, HOMING_LOW, HOMING_HIGH, LIMIT_LOW, LIMIT_HIGH }; // STATES
  8. enum { EVT_DISABLE, EVT_ENABLE, EVT_ENABLED_TIMEOUT, EVT_MOVE, EVT_STOP,
  9. EVT_EMERGENCY_STOP, EVT_ON_LIMIT_LOW, EVT_ON_LIMIT_HIGH, EVT_ON_TARGET,
  10. EVT_HOMING_LOW, EVT_HOMING_HIGH, ELSE }; // EVENTS
  11. Atm_AccelStepper( void ) : Machine() {};
  12. Atm_AccelStepper& begin( int step_pin, int dir_pin );
  13. Atm_AccelStepper& trace( Stream & stream );
  14. Atm_AccelStepper& trigger( int event );
  15. int state( void );
  16. Atm_AccelStepper& onChangeposition( Machine& machine, int event = 0 );
  17. Atm_AccelStepper& onChangeposition( atm_cb_push_t callback, int idx = 0 );
  18. Atm_AccelStepper& onChangestate( Machine& machine, int event = 0 );
  19. Atm_AccelStepper& onChangestate( atm_cb_push_t callback, int idx = 0 );
  20. Atm_AccelStepper& onOnlimithigh( Machine& machine, int event = 0 );
  21. Atm_AccelStepper& onOnlimithigh( atm_cb_push_t callback, int idx = 0 );
  22. Atm_AccelStepper& onOnlimitlow( Machine& machine, int event = 0 );
  23. Atm_AccelStepper& onOnlimitlow( atm_cb_push_t callback, int idx = 0 );
  24. Atm_AccelStepper& onOntarget( Machine& machine, int event = 0 );
  25. Atm_AccelStepper& onOntarget( atm_cb_push_t callback, int idx = 0 );
  26. Atm_AccelStepper& onStop( Machine& machine, int event = 0 );
  27. Atm_AccelStepper& onStop( atm_cb_push_t callback, int idx = 0 );
  28. Atm_AccelStepper& onOnhominglow( Machine& machine, int event = 0 );
  29. Atm_AccelStepper& onOnhominglow( atm_cb_push_t callback, int idx = 0 );
  30. Atm_AccelStepper& onOnhominghigh( Machine& machine, int event = 0 );
  31. Atm_AccelStepper& onOnhominghigh( atm_cb_push_t callback, int idx = 0 );
  32. Atm_AccelStepper& disable( void );
  33. Atm_AccelStepper& enable( void );
  34. //Atm_AccelStepper& move( void );
  35. Atm_AccelStepper& stop( void );
  36. Atm_AccelStepper& emergency_stop( void );
  37. Atm_AccelStepper& on_limit_low( void );
  38. Atm_AccelStepper& on_limit_high( void );
  39. Atm_AccelStepper& on_target( void );
  40. AccelStepper *stepper;
  41. long int _maxStep = 0; //0 is undefined, can be set using setMaxstep or homingHigh
  42. long int homing_speed = 1000;
  43. bool homingLow_done = 0 ;
  44. bool homingHigh_done = 0 ;
  45. long int max_speed = 1000;
  46. long int acceleration = 100;
  47. Atm_AccelStepper& setMaxStep( long int maxStep );
  48. Atm_AccelStepper& setMaxSpeed( long int maxSpeed );
  49. Atm_AccelStepper& setHomingSpeed( long int homingSpeed);
  50. Atm_AccelStepper& setAcceleration( long int acc);
  51. Atm_AccelStepper& setPosition( long int position);
  52. long int getPosition();
  53. long int distanceToGo();
  54. bool isRunning();
  55. float getSpeed();
  56. Atm_AccelStepper& move(long int stepRel);
  57. Atm_AccelStepper& moveTo(long int stepAbs);
  58. Atm_AccelStepper& movePercent(float percent);
  59. Atm_AccelStepper& moveToPercent(float percent);
  60. Atm_AccelStepper& rotate(long int speed );
  61. Atm_AccelStepper& homing( bool direction );
  62. int runMode = 0; // 0 uses run() for positioning, 1 uses runSpeed() for constant speed
  63. Atm_AccelStepper& position_refresh( long int refresh_ms = 1000);
  64. // Atm_AccelStepper& rotationReversed(bool reversed);
  65. Atm_AccelStepper& setEnablePin( int enablePin );
  66. Atm_AccelStepper& pinReversed( bool directionInvert=false, bool stepInvert=false, bool enableInvert=false );
  67. bool enabled ;
  68. //limits public methods and variables
  69. Atm_AccelStepper& limitLow_set(int mode = 0, int pin = -1, int reversed=0);
  70. Atm_AccelStepper& limitLow_isHard(bool hardlimit = 1);
  71. Atm_AccelStepper& limitLow_setThresholds (int threshold_low=510, int threshold_high = 1024);
  72. Atm_AccelStepper& limitHigh_set(int mode = 0, int pin = -1, int reversed=0);
  73. Atm_AccelStepper& limitHigh_isHard(bool hardlimit = 1);
  74. Atm_AccelStepper& limitHigh_setThresholds (int threshold_low=510, int threshold_high = 1024);
  75. bool limitLow_State_raw;
  76. bool limitLow_State = 0;
  77. bool limitHigh_State = 0;
  78. bool limitHigh_State_raw;
  79. bool limitLow_State_prev;
  80. bool limitHigh_State_prev;
  81. const static int limit_buf_size = 20 ;
  82. bool limitLow_state_buf [limit_buf_size] ;
  83. int limitLow_state_total = 0 ;
  84. int limitLow_buf_head ;
  85. int limitLow_avg(bool limitState);
  86. bool limitHigh_state_buf [limit_buf_size] ;
  87. int limitHigh_state_total = 0 ;
  88. int limitHigh_buf_head ;
  89. int limitHigh_avg(bool limitState);
  90. bool changed = 0 ; //temp container to test if some value changed
  91. private:
  92. // ACTIONS
  93. enum { ENT_DISABLED, ENT_ENABLED,ENT_RUNNING, LP_RUNNING, ENT_STOP, LP_STOP,
  94. ENT_HOMING_LOW, LP_HOMING_LOW, EXT_HOMING_LOW,
  95. ENT_HOMING_HIGH, LP_HOMING_HIGH, EXT_HOMING_HIGH,
  96. ENT_LIMIT_LOW, LP_LIMIT_LOW, ENT_LIMIT_HIGH, LP_LIMIT_HIGH };
  97. // CONNECTORS
  98. enum { ON_CHANGEPOSITION, ON_CHANGESTATE, ON_ONLIMITHIGH,
  99. ON_ONLIMITLOW, ON_ONTARGET, ON_STOP, ON_ONHOMINGLOW, ON_ONHOMINGHIGH, CONN_MAX };
  100. atm_connector connectors[CONN_MAX];
  101. int event( int id );
  102. void action( int id );
  103. //positionning private variables
  104. long int _currentStep = 0;
  105. long int _targetStep = 0;
  106. long int _currentSpeed;
  107. atm_timer_millis position_timer ;
  108. int POSITION_SEND_TIMER = 50 ;
  109. void stepper_update(void);
  110. // bool _rotationReversed = 0 ;
  111. //enable private variables
  112. int _enablePin = -1;
  113. bool _enableReversed = 0 ;
  114. //enable timeout not implemented yet
  115. // atm_timer_millis idle_timer ;
  116. // int IDLE_TIMEOUT_DURATION = 500000 ;
  117. //Limits private variables
  118. int _limitLow_Pin;
  119. int _limitLow_Mode = 0; //0 no limit, 1 digital, 2 analog with thresholds
  120. bool _limitLow_Reversed ; //invert logic of limit switches
  121. int _limitLow_Thresholds[2] ; //analog value range for two analog limits
  122. bool _limitLow_Hard = 0;
  123. int _limitHigh_Pin;
  124. int _limitHigh_Mode=0; //0 no limit, 1 digital, 2 analog with thresholds
  125. bool _limitHigh_Reversed ; //invert logic of limit switches
  126. int _limitHigh_Thresholds[2] ; //analog value range for two analog limits
  127. bool _limitHigh_Hard = 0 ;
  128. // int _isHoming = 0 ;
  129. atm_timer_millis limits_timer ;
  130. int LIMIT_UPDATE_RATE = 5 ;
  131. // void updateLimitSwitch();
  132. };
  133. //#endif
  134. /*
  135. Automaton::ATML::begin - Automaton Markup Language
  136. <?xml version="1.0" encoding="UTF-8"?>
  137. <machines>
  138. <machine name="Atm_AccelStepper">
  139. <states>
  140. <DISABLED index="0" on_enter="ENT_DISABLED">
  141. <EVT_ENABLE>ENABLED</EVT_ENABLE>
  142. </DISABLED>
  143. <ENABLED index="1" on_enter="ENT_ENABLED">
  144. <EVT_DISABLE>DISABLED</EVT_DISABLE>
  145. <EVT_ENABLED_TIMEOUT>DISABLED</EVT_ENABLED_TIMEOUT>
  146. <EVT_STOP>STOP</EVT_STOP>
  147. <EVT_EMERGENCY_STOP>STOP</EVT_EMERGENCY_STOP>
  148. </ENABLED>
  149. <RUNNING index="2" on_loop="LP_RUNNING">
  150. <EVT_DISABLE>DISABLED</EVT_DISABLE>
  151. <EVT_STOP>STOP</EVT_STOP>
  152. <EVT_EMERGENCY_STOP>STOP</EVT_EMERGENCY_STOP>
  153. <EVT_ON_LIMIT_LOW>LIMIT_LOW</EVT_ON_LIMIT_LOW>
  154. <EVT_ON_LIMIT_HIGH>LIMIT_HIGH</EVT_ON_LIMIT_HIGH>
  155. <EVT_ON_TARGET>ENABLED</EVT_ON_TARGET>
  156. </RUNNING>
  157. <STOP index="3">
  158. <EVT_DISABLE>DISABLED</EVT_DISABLE>
  159. <EVT_STOP>STOP</EVT_STOP>
  160. <EVT_EMERGENCY_STOP>STOP</EVT_EMERGENCY_STOP>
  161. </STOP>
  162. <HOMING_LOW index="4" on_enter="ENT_HOMING_LOW" on_exit="EXT_HOMING_LOW">
  163. <EVT_DISABLE>DISABLED</EVT_DISABLE>
  164. <EVT_STOP>STOP</EVT_STOP>
  165. <EVT_EMERGENCY_STOP>STOP</EVT_EMERGENCY_STOP>
  166. <EVT_ON_LIMIT_LOW>ENABLED</EVT_ON_LIMIT_LOW>
  167. </HOMING_LOW>
  168. <HOMING_HIGH index="5" on_enter="ENT_HOMING_HIGH" on_exit="EXT_HOMING_HIGH">
  169. <EVT_DISABLE>DISABLED</EVT_DISABLE>
  170. <EVT_STOP>STOP</EVT_STOP>
  171. <EVT_EMERGENCY_STOP>STOP</EVT_EMERGENCY_STOP>
  172. <EVT_ON_LIMIT_HIGH>ENABLED</EVT_ON_LIMIT_HIGH>
  173. </HOMING_HIGH>
  174. <LIMIT_LOW index="6" on_enter="ENT_LIMIT_LOW">
  175. <EVT_STOP>STOP</EVT_STOP>
  176. <EVT_EMERGENCY_STOP>STOP</EVT_EMERGENCY_STOP>
  177. <EVT_ON_LIMIT_LOW>LIMIT_LOW</EVT_ON_LIMIT_LOW>
  178. </LIMIT_LOW>
  179. <LIMIT_HIGH index="7" on_enter="ENT_LIMIT_HIGH">
  180. <EVT_STOP>STOP</EVT_STOP>
  181. <EVT_EMERGENCY_STOP>STOP</EVT_EMERGENCY_STOP>
  182. <EVT_ON_LIMIT_HIGH>LIMIT_HIGH</EVT_ON_LIMIT_HIGH>
  183. </LIMIT_HIGH>
  184. </states>
  185. <events>
  186. <EVT_DISABLE index="0" access="MIXED"/>
  187. <EVT_ENABLE index="1" access="MIXED"/>
  188. <EVT_ENABLED_TIMEOUT index="2" access="PRIVATE"/>
  189. <EVT_STOP index="3" access="MIXED"/>
  190. <EVT_EMERGENCY_STOP index="4" access="MIXED"/>
  191. <EVT_ON_LIMIT_LOW index="5" access="MIXED"/>
  192. <EVT_ON_LIMIT_HIGH index="6" access="MIXED"/>
  193. <EVT_ON_TARGET index="7" access="MIXED"/>
  194. </events>
  195. <connectors>
  196. <CHANGEPOSITION autostore="0" broadcast="0" dir="PUSH" slots="1"/>
  197. <CHANGESTATE autostore="0" broadcast="0" dir="PUSH" slots="1"/>
  198. <ONLIMITHIGH autostore="0" broadcast="0" dir="PUSH" slots="1"/>
  199. <ONLIMITLOW autostore="0" broadcast="0" dir="PUSH" slots="1"/>
  200. <ONTARGET autostore="0" broadcast="0" dir="PUSH" slots="1"/>
  201. <STOP autostore="0" broadcast="0" dir="PUSH" slots="1"/>
  202. </connectors>
  203. <methods>
  204. </methods>
  205. </machine>
  206. </machines>
  207. Automaton::ATML::end
  208. */