FlipFlat.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. #ifndef __FLIPFLAT_H__
  2. #define __FLIPFLAT_H__
  3. #include <Arduino.h>
  4. #include <Streaming.h>
  5. #include <EasyButton.h>
  6. #include <AccelStepper.h>
  7. #include <TMCStepper.h>
  8. #define DEBUG 0
  9. #define TMC2130
  10. //#define UNIPOLAR
  11. #ifdef ESP32
  12. #define BRIGHT_PLUS GPIO_NUM_34
  13. #define BRIGHT_MIN GPIO_NUM_35
  14. #define PWM GPIO_NUM_25
  15. #define COER_FF GPIO_NUM_39
  16. #define FF_SERIAL Serial2
  17. #define LOG_SERIAL Serial
  18. #endif
  19. #ifdef __AVR_ATmega32U4__
  20. #define BRIGHT_PLUS 19
  21. #define BRIGHT_MIN 20
  22. #define PWM 9
  23. #define COVER_FF 18
  24. #define FF_SERIAL Serial
  25. #define LOG_SERIAL Serial1
  26. #endif
  27. #ifdef UNIPOLAR
  28. #define STEP_PIN1 5
  29. #define STEP_PIN2 6
  30. #define STEP_PIN3 7
  31. #define STEP_PIN4 8
  32. #define STEPS 2038
  33. #else
  34. #define STEP_PIN 7
  35. #define DIR_PIN 8
  36. #endif
  37. #ifdef TMC2130
  38. #define R_SENSE 0.11f
  39. #define CS_PIN 6
  40. #define EN_PIN 5
  41. #endif
  42. #define MAX_SPEED 200
  43. #define STEPS 200 // steps per revolution for the motor
  44. #define MICROSTEPS 4
  45. #define COVER_ANGLE 180.0
  46. enum devices {
  47. FLAT_MAN_L = 10,
  48. FLAT_MAN_XL = 15,
  49. FLAT_MAN = 19,
  50. FLIP_FLAT = 99
  51. };
  52. enum motorStatuses {
  53. STOPPED = 0,
  54. RUNNING
  55. };
  56. enum lightStatuses {
  57. OFF = 0,
  58. ON
  59. };
  60. enum shutterStatuses {
  61. NEITHER_OPENED_NOR_CLOSED = 0, // ie not open or closed...could be moving
  62. CLOSED,
  63. OPENED,
  64. TIMED_OUT
  65. };
  66. enum motorDirections {
  67. CLOSING = -1,
  68. IDLE,
  69. OPENING
  70. };
  71. enum commands
  72. {
  73. NONE,
  74. PING,
  75. OPEN,
  76. CLOSE,
  77. LIGHT_ON,
  78. LIGHT_OFF,
  79. SET_BRIGHTNESS,
  80. GET_BRIGHTNESS,
  81. STATUS,
  82. VERSION
  83. };
  84. void initializeStepper();
  85. void setupSerial();
  86. void handleSerial();
  87. void handleCoverButton();
  88. void increaseBrightness();
  89. void decreaseBrightness();
  90. void setBrightness(int newBrightness);
  91. void openFlipFlat();
  92. void closeFlipFlat();
  93. void rotateMotor(int direction);
  94. void processCommand(const char* cmd, const char *data);
  95. void parseCommand();
  96. void sendCommandResponse();
  97. #if DEBUG
  98. #ifndef LOG
  99. #define LOG(A) LOG_SERIAL << F(A) << endl
  100. #define LOG1(A, B) LOG_SERIAL << F(A) << B << endl;
  101. #endif
  102. #else
  103. #define LOG(A)
  104. #define LOG1(A, B)
  105. #endif //DEBUG
  106. #endif //__FLIPFLAT_H__