powerbox.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #ifndef __POWERBOX_H__
  2. #define __POWERBOX_H__
  3. // includes
  4. #include <Arduino.h>
  5. #include <LittleFS.h>
  6. #include <ESPAsyncWebServer.h>
  7. #include <ArduinoJson.h>
  8. #include <AsyncJson.h>
  9. #include <Streaming.h>
  10. #include <Ticker.h>
  11. #include "PowerOutlet.h"
  12. #include "WifiConfig.h"
  13. // defines
  14. #define HTTP_PORT 80
  15. #define NUMBERPOWEROUTLETS 4
  16. const char *powerOutletsConfigFile = "/powerOutletsConfig.json";
  17. const char *wifiConfigurationFile = "/wifiConfiguration.json";
  18. struct WiFiConfiguration
  19. {
  20. char wifiNetworkSsid[30];
  21. char wifiNetworkPassword[30];
  22. char softAPSsid[30];
  23. char softAPPassword[30];
  24. char softAPipAddress[15];
  25. char softAPGateway[15];
  26. char softAPSubnet[15];
  27. };
  28. #define TOUCH_THRESHOLD 25
  29. #define TOUCH_DEBOUNCE_TIME 500
  30. // function definitions
  31. void processNotFound(AsyncWebServerRequest *request);
  32. void processGetPowerOutlets(AsyncWebServerRequest *request);
  33. void processGetPowerOutlets_Id(AsyncWebServerRequest *request);
  34. void processPutPowerOutlets_Id(AsyncWebServerRequest *request, uint8_t *data, size_t len, size_t index, size_t total);
  35. void processGetWifiConfig(AsyncWebServerRequest *request);
  36. void processHttpWifiConfig(AsyncWebServerRequest *request, JsonVariant &json);
  37. void togglePowerOutlet(int id);
  38. void turnOffAll();
  39. void setPowerOutletState(int id, bool state);
  40. void setonPowerOutlet(int id);
  41. void processTouch();
  42. bool setupWebserver();
  43. void setupWifi();
  44. void setupGPIO();
  45. void setupTouchInterfaces();
  46. void initializeTickers();
  47. bool loadPowerOutletsConfiguration();
  48. bool savePowerOutletsConfiguration();
  49. bool loadWiFiConfiguration();
  50. void onEvent(AsyncWebSocket *server, AsyncWebSocketClient *client, AwsEventType type,
  51. void *arg, uint8_t *data, size_t len);
  52. void handleWebSocketMessage(void *arg, uint8_t *data, size_t len);
  53. void notifyWebSocketClients(int id);
  54. #endif //__POWERBOX_H