server_GPIO.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. #ifndef SERVER_GPIO_H
  2. #define SERVER_GPIO_H
  3. #include <esp_log.h>
  4. #include <esp_http_server.h>
  5. #include <map>
  6. #include "driver/gpio.h"
  7. #include "SmartLeds.h"
  8. //#include "ClassControllCamera.h"
  9. #define __LEDGLOBAL
  10. typedef enum {
  11. GPIO_PIN_MODE_DISABLED = 0x0,
  12. GPIO_PIN_MODE_INPUT = 0x1,
  13. GPIO_PIN_MODE_INPUT_PULLUP = 0x2,
  14. GPIO_PIN_MODE_INPUT_PULLDOWN = 0x3,
  15. GPIO_PIN_MODE_OUTPUT = 0x4,
  16. GPIO_PIN_MODE_BUILT_IN_FLASH_LED = 0x5,
  17. GPIO_PIN_MODE_OUTPUT_PWM = 0x6,
  18. GPIO_PIN_MODE_EXTERNAL_FLASH_PWM = 0x7,
  19. GPIO_PIN_MODE_EXTERNAL_FLASH_WS281X = 0x8,
  20. } gpio_pin_mode_t;
  21. struct GpioResult {
  22. gpio_num_t gpio;
  23. int value;
  24. };
  25. typedef enum {
  26. GPIO_SET_SOURCE_INTERNAL = 0,
  27. GPIO_SET_SOURCE_MQTT = 1,
  28. GPIO_SET_SOURCE_HTTP = 2,
  29. } gpio_set_source;
  30. class GpioPin {
  31. public:
  32. GpioPin(gpio_num_t gpio, const char* name, gpio_pin_mode_t mode, gpio_int_type_t interruptType, uint8_t dutyResolution, std::string mqttTopic, bool httpEnable);
  33. ~GpioPin();
  34. void init();
  35. bool getValue(std::string* errorText);
  36. void setValue(bool value, gpio_set_source setSource, std::string* errorText);
  37. bool handleMQTT(std::string, char* data, int data_len);
  38. void publishState();
  39. void gpioInterrupt(int value);
  40. gpio_int_type_t getInterruptType() { return _interruptType; }
  41. gpio_pin_mode_t getMode() { return _mode; }
  42. gpio_num_t getGPIO(){return _gpio;};
  43. private:
  44. gpio_num_t _gpio;
  45. const char* _name;
  46. gpio_pin_mode_t _mode;
  47. gpio_int_type_t _interruptType;
  48. std::string _mqttTopic;
  49. int currentState = -1;
  50. };
  51. esp_err_t callHandleHttpRequest(httpd_req_t *req);
  52. void taskGpioHandler(void *pvParameter);
  53. class GpioHandler {
  54. public:
  55. GpioHandler(std::string configFile, httpd_handle_t httpServer);
  56. ~GpioHandler();
  57. void init();
  58. void deinit();
  59. void registerGpioUri();
  60. esp_err_t handleHttpRequest(httpd_req_t *req);
  61. void taskHandler();
  62. void gpioInterrupt(GpioResult* gpioResult);
  63. void flashLightEnable(bool value);
  64. bool isEnabled() { return _isEnabled; }
  65. void handleMQTTconnect();
  66. private:
  67. std::string _configFile;
  68. httpd_handle_t _httpServer;
  69. std::map<gpio_num_t, GpioPin*> *gpioMap = NULL;
  70. TaskHandle_t xHandleTaskGpio = NULL;
  71. bool _isEnabled = false;
  72. int LEDNumbers = 2;
  73. Rgb LEDColor = Rgb{ 255, 255, 255 };
  74. LedType LEDType = LED_WS2812;
  75. #ifdef __LEDGLOBAL
  76. SmartLed *leds_global = NULL;
  77. #endif
  78. bool readConfig();
  79. void clear();
  80. gpio_num_t resolvePinNr(uint8_t pinNr);
  81. gpio_pin_mode_t resolvePinMode(std::string input);
  82. gpio_int_type_t resolveIntType(std::string input);
  83. };
  84. void gpio_handler_create(httpd_handle_t server);
  85. void gpio_handler_init();
  86. void gpio_handler_deinit();
  87. void gpio_handler_destroy();
  88. GpioHandler* gpio_handler_get();
  89. #endif //SERVER_GPIO_H