FlipFlat.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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 1
  8. #define UNIPOLAR 1
  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. #ifdef 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. enum devices {
  37. FLAT_MAN_L = 10,
  38. FLAT_MAN_XL = 15,
  39. FLAT_MAN = 19,
  40. FLIP_FLAT = 99
  41. };
  42. enum motorStatuses {
  43. STOPPED = 0,
  44. RUNNING
  45. };
  46. enum lightStatuses {
  47. OFF = 0,
  48. ON
  49. };
  50. enum shutterStatuses {
  51. NEITHER_OPEN_NOR_CLOSED = 0, // ie not open or closed...could be moving
  52. CLOSED,
  53. OPEN,
  54. TIMED_OUT
  55. };
  56. enum motorDirections {
  57. OPENING = 0,
  58. CLOSING,
  59. NONE
  60. };
  61. void setupSerial();
  62. void handleSerial();
  63. void handleCoverSwitch();
  64. void increaseBrightness();
  65. void decreaseBrightness();
  66. void setBrightness(int newBrightness);
  67. void openFlipFlat();
  68. void closeFlipFlat();
  69. void rotateMotor(float newAngle);
  70. void processCommand(const char* cmd, const char *data);
  71. void parseCommand();
  72. #if DEBUG
  73. #ifndef LOG
  74. #define LOG(A) LOG_SERIAL << F(A) << endl
  75. #define LOG1(A, B) LOG_SERIAL << F(A) << B << endl;
  76. #endif
  77. #else
  78. #define LOG(A)
  79. #define LOG1(A, B)
  80. #endif //DEBUG
  81. #endif //__FLIPFLAT_H__