FlipFlat.h 2.2 KB

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