Atm_AccelStepper.h 7.9 KB

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