stepper.ino 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /* Stepper Drivers Functions */
  2. //writeStep write the step given the byte representation of a step on both stepper
  3. //e.g. writeStep(0b00110011);
  4. void writeStep(byte stepByte) {
  5. shiftOut(STP_DATA_PIN, STP_CLOCK_PIN, MSBFIRST, stepByte);
  6. digitalWrite(STP_LATCH_PIN, HIGH);
  7. digitalWrite(STP_LATCH_PIN, LOW);
  8. delayMicroseconds(840); //780 - 800 ms minimum, recommend 840 to 860ms
  9. }
  10. //Move the robot forward by 8 * rev micro steps
  11. void forward(int rev) {
  12. for (int i = 0; i < rev; i++) {
  13. writeStep(0b00010001);
  14. writeStep(0b00110011);
  15. writeStep(0b00100010);
  16. writeStep(0b01100110);
  17. writeStep(0b01000100);
  18. writeStep(0b11001100);
  19. writeStep(0b10001000);
  20. writeStep(0b10011001);
  21. }
  22. }
  23. //Move the robot backward by 8 * rev micro steps
  24. void backward(int rev) {
  25. for (int i = 0; i < rev; i++) {
  26. writeStep(0b10011001);
  27. writeStep(0b10001000);
  28. writeStep(0b11001100);
  29. writeStep(0b01000100);
  30. writeStep(0b01100110);
  31. writeStep(0b00100010);
  32. writeStep(0b00110011);
  33. writeStep(0b00010001);
  34. }
  35. }
  36. //Differential offset the robot wheels by +- 8 * rev micro steps, anti-clockwise
  37. void rotateAntiClockwise(int rev) {
  38. for (int i = 0; i < rev; i++) {
  39. writeStep(0b00011001);
  40. writeStep(0b00111000);
  41. writeStep(0b00101100);
  42. writeStep(0b01100100);
  43. writeStep(0b01000110);
  44. writeStep(0b11000010);
  45. writeStep(0b10000011);
  46. writeStep(0b10010001);
  47. }
  48. }
  49. //Differential offset the robot wheels by +- 8 * rev micro steps, clockwise
  50. void rotateClockwise(int rev) {
  51. for (int i = 0; i < rev; i++) {
  52. writeStep(0b10010001);
  53. writeStep(0b10000011);
  54. writeStep(0b11000010);
  55. writeStep(0b01000110);
  56. writeStep(0b01100100);
  57. writeStep(0b00101100);
  58. writeStep(0b00111000);
  59. writeStep(0b00011001);
  60. }
  61. }