Atm_AccelStepper.h 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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 homing_speed = 1000;
  42. long int max_speed = 10000;
  43. long int acceleration = 1000;
  44. Atm_AccelStepper& setMaxSpeed( long int maxSpeed );
  45. Atm_AccelStepper& setHomingSpeed( long int homingSpeed);
  46. Atm_AccelStepper& setAcceleration( long int acc);
  47. Atm_AccelStepper& setPosition( long int position);
  48. long int getPosition();
  49. long int distanceToGo();
  50. bool isRunning();
  51. float getSpeed();
  52. Atm_AccelStepper& move(long int stepRel );
  53. Atm_AccelStepper& moveTo(long int stepAbs );
  54. Atm_AccelStepper& rotate(long int speed );
  55. Atm_AccelStepper& homing( bool direction );
  56. int runMode = 0; // 0 uses run() for positioning, 1 uses runSpeed() for constant speed
  57. Atm_AccelStepper& position_refresh( long int refresh_ms = 1000);
  58. // Atm_AccelStepper& rotationReversed(bool reversed);
  59. Atm_AccelStepper& setEnablePin( int enablePin );
  60. Atm_AccelStepper& pinReversed( bool directionInvert=false, bool stepInvert=false, bool enableInvert=false );
  61. bool enabled ;
  62. Atm_AccelStepper& limitLow_set(int mode = 0, int pin = -1, int reversed=0);
  63. Atm_AccelStepper& limitLow_isHard(bool hardlimit = 1);
  64. Atm_AccelStepper& limitLow_setThresholds (int threshold_low=510, int threshold_high = 1024);
  65. Atm_AccelStepper& limitHigh_set(int mode = 0, int pin = -1, int reversed=0);
  66. Atm_AccelStepper& limitHigh_isHard(bool hardlimit = 1);
  67. Atm_AccelStepper& limitHigh_setThresholds (int threshold_low=510, int threshold_high = 1024);
  68. bool limitLow_State;
  69. bool limitHigh_State;
  70. bool previous_state = limitLow_State;
  71. private:
  72. // ACTIONS
  73. enum { ENT_DISABLED, ENT_ENABLED,ENT_RUNNING, LP_RUNNING, ENT_STOP, LP_STOP,
  74. ENT_HOMING_LOW, LP_HOMING_LOW, EXT_HOMING_LOW,
  75. ENT_HOMING_HIGH, LP_HOMING_HIGH, EXT_HOMING_HIGH,
  76. ENT_LIMIT_LOW, LP_LIMIT_LOW, ENT_LIMIT_HIGH, LP_LIMIT_HIGH };
  77. // CONNECTORS
  78. enum { ON_CHANGEPOSITION, ON_CHANGESTATE, ON_ONLIMITHIGH,
  79. ON_ONLIMITLOW, ON_ONTARGET, ON_STOP, CONN_MAX };
  80. atm_connector connectors[CONN_MAX];
  81. int event( int id );
  82. void action( int id );
  83. void stepper_update(void);
  84. long int _currentStep = 0;
  85. long int _targetStep = 0;
  86. long int _maxStep ;
  87. atm_timer_millis position_timer ;
  88. int POSITION_SEND_TIMER = 50 ;
  89. // bool _rotationReversed = 0 ;
  90. int _enablePin = -1;
  91. bool _enableReversed = 0 ;
  92. atm_timer_millis idle_timer ;
  93. int IDLE_TIMEOUT_DURATION = 500000 ;
  94. int _limitLow_Pin;
  95. int _limitLow_Mode = 0; //0 no limit, 1 digital, 2 analog with thresholds
  96. bool _limitLow_Reversed ; //invert logic of limit switches
  97. int _limitLow_Thresholds[2] ; //analog value range for two analog limits
  98. bool _limitLow_Hard = 0;
  99. int _limitHigh_Pin;
  100. int _limitHigh_Mode=0; //0 no limit, 1 digital, 2 analog with thresholds
  101. bool _limitHigh_Reversed ; //invert logic of limit switches
  102. int _limitHigh_Thresholds[2] ; //analog value range for two analog limits
  103. bool _limitHigh_Hard = 0 ;
  104. int _isHoming = 0 ;
  105. void updateLimitSwitch();
  106. };
  107. //#endif
  108. /*
  109. Automaton::ATML::begin - Automaton Markup Language
  110. <?xml version="1.0" encoding="UTF-8"?>
  111. <machines>
  112. <machine name="Atm_AccelStepper">
  113. <states>
  114. <DISABLED index="0" on_enter="ENT_DISABLED">
  115. <EVT_ENABLE>ENABLED</EVT_ENABLE>
  116. </DISABLED>
  117. <ENABLED index="1" on_enter="ENT_ENABLED">
  118. <EVT_DISABLE>DISABLED</EVT_DISABLE>
  119. <EVT_ENABLED_TIMEOUT>DISABLED</EVT_ENABLED_TIMEOUT>
  120. <EVT_STOP>STOP</EVT_STOP>
  121. <EVT_EMERGENCY_STOP>STOP</EVT_EMERGENCY_STOP>
  122. </ENABLED>
  123. <RUNNING index="2" on_loop="LP_RUNNING">
  124. <EVT_DISABLE>DISABLED</EVT_DISABLE>
  125. <EVT_STOP>STOP</EVT_STOP>
  126. <EVT_EMERGENCY_STOP>STOP</EVT_EMERGENCY_STOP>
  127. <EVT_ON_LIMIT_LOW>LIMIT_LOW</EVT_ON_LIMIT_LOW>
  128. <EVT_ON_LIMIT_HIGH>LIMIT_HIGH</EVT_ON_LIMIT_HIGH>
  129. <EVT_ON_TARGET>ENABLED</EVT_ON_TARGET>
  130. </RUNNING>
  131. <STOP index="3">
  132. <EVT_DISABLE>DISABLED</EVT_DISABLE>
  133. <EVT_STOP>STOP</EVT_STOP>
  134. <EVT_EMERGENCY_STOP>STOP</EVT_EMERGENCY_STOP>
  135. </STOP>
  136. <HOMING_LOW index="4" on_enter="ENT_HOMING_LOW" on_exit="EXT_HOMING_LOW">
  137. <EVT_DISABLE>DISABLED</EVT_DISABLE>
  138. <EVT_STOP>STOP</EVT_STOP>
  139. <EVT_EMERGENCY_STOP>STOP</EVT_EMERGENCY_STOP>
  140. <EVT_ON_LIMIT_LOW>ENABLED</EVT_ON_LIMIT_LOW>
  141. </HOMING_LOW>
  142. <HOMING_HIGH index="5" on_enter="ENT_HOMING_HIGH" on_exit="EXT_HOMING_HIGH">
  143. <EVT_DISABLE>DISABLED</EVT_DISABLE>
  144. <EVT_STOP>STOP</EVT_STOP>
  145. <EVT_EMERGENCY_STOP>STOP</EVT_EMERGENCY_STOP>
  146. <EVT_ON_LIMIT_HIGH>ENABLED</EVT_ON_LIMIT_HIGH>
  147. </HOMING_HIGH>
  148. <LIMIT_LOW index="6" on_enter="ENT_LIMIT_LOW">
  149. <EVT_STOP>STOP</EVT_STOP>
  150. <EVT_EMERGENCY_STOP>STOP</EVT_EMERGENCY_STOP>
  151. <EVT_ON_LIMIT_LOW>LIMIT_LOW</EVT_ON_LIMIT_LOW>
  152. </LIMIT_LOW>
  153. <LIMIT_HIGH index="7" on_enter="ENT_LIMIT_HIGH">
  154. <EVT_STOP>STOP</EVT_STOP>
  155. <EVT_EMERGENCY_STOP>STOP</EVT_EMERGENCY_STOP>
  156. <EVT_ON_LIMIT_HIGH>LIMIT_HIGH</EVT_ON_LIMIT_HIGH>
  157. </LIMIT_HIGH>
  158. </states>
  159. <events>
  160. <EVT_DISABLE index="0" access="MIXED"/>
  161. <EVT_ENABLE index="1" access="MIXED"/>
  162. <EVT_ENABLED_TIMEOUT index="2" access="PRIVATE"/>
  163. <EVT_STOP index="3" access="MIXED"/>
  164. <EVT_EMERGENCY_STOP index="4" access="MIXED"/>
  165. <EVT_ON_LIMIT_LOW index="5" access="MIXED"/>
  166. <EVT_ON_LIMIT_HIGH index="6" access="MIXED"/>
  167. <EVT_ON_TARGET index="7" access="MIXED"/>
  168. </events>
  169. <connectors>
  170. <CHANGEPOSITION autostore="0" broadcast="0" dir="PUSH" slots="1"/>
  171. <CHANGESTATE autostore="0" broadcast="0" dir="PUSH" slots="1"/>
  172. <ONLIMITHIGH autostore="0" broadcast="0" dir="PUSH" slots="1"/>
  173. <ONLIMITLOW autostore="0" broadcast="0" dir="PUSH" slots="1"/>
  174. <ONTARGET autostore="0" broadcast="0" dir="PUSH" slots="1"/>
  175. <STOP autostore="0" broadcast="0" dir="PUSH" slots="1"/>
  176. </connectors>
  177. <methods>
  178. </methods>
  179. </machine>
  180. </machines>
  181. Automaton::ATML::end
  182. */