FlipFlat.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. #define DEBUG 0
  8. #define UNIPOLAR 0
  9. #ifdef ESP32
  10. #define BRIGHT_PLUS GPIO_NUM_34
  11. #define BRIGHT_MIN GPIO_NUM_35
  12. #define PWM GPIO_NUM_25
  13. #define COER_FF GPIO_NUM_39
  14. #define FF_SERIAL Serial2
  15. #define LOG_SERIAL Serial
  16. #endif
  17. #ifdef __AVR_ATmega32U4__
  18. #define BRIGHT_PLUS 15
  19. #define BRIGHT_MIN 14
  20. #define PWM 9
  21. #define COVER_FF 16
  22. #define FF_SERIAL Serial
  23. #define LOG_SERIAL Serial1
  24. #endif
  25. #if UNIPOLAR
  26. #define STEP_PIN1 5
  27. #define STEP_PIN2 6
  28. #define STEP_PIN3 7
  29. #define STEP_PIN4 8
  30. #define STEPS 2038
  31. #else
  32. #define STEP_PIN 7
  33. #define DIR_PIN 8
  34. #define STEPS 200 // steps per revolution for the motor
  35. #endif
  36. #define OPEN_ANGLE 270.0
  37. enum devices {
  38. FLAT_MAN_L = 10,
  39. FLAT_MAN_XL = 15,
  40. FLAT_MAN = 19,
  41. FLIP_FLAT = 99
  42. };
  43. enum motorStatuses {
  44. STOPPED = 0,
  45. RUNNING
  46. };
  47. enum lightStatuses {
  48. OFF = 0,
  49. ON
  50. };
  51. enum shutterStatuses {
  52. NEITHER_OPEN_NOR_CLOSED = 0, // ie not open or closed...could be moving
  53. CLOSED,
  54. OPEN,
  55. TIMED_OUT
  56. };
  57. enum motorDirections {
  58. OPENING = 0,
  59. CLOSING,
  60. NONE
  61. };
  62. void setupSerial();
  63. void handleSerial();
  64. void handleCoverSwitch();
  65. void increaseBrightness();
  66. void decreaseBrightness();
  67. void setBrightness(int newBrightness);
  68. void openFlipFlat();
  69. void closeFlipFlat();
  70. void rotateMotor(float newAngle);
  71. void processCommand(const char* cmd, const char *data);
  72. void parseCommand();
  73. #if DEBUG
  74. #ifndef LOG
  75. #define LOG(A) LOG_SERIAL << F(A) << endl
  76. #define LOG1(A, B) LOG_SERIAL << F(A) << B << endl;
  77. #endif
  78. #else
  79. #define LOG(A)
  80. #define LOG1(A, B)
  81. #endif //DEBUG
  82. #endif //__FLIPFLAT_H__