FlipFlat.h 1.6 KB

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