WifiConfig.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #ifndef __WIFICONFIG_H__
  2. #define __WIFICONFIG_H__
  3. #include <Arduino.h>
  4. #include <ArduinoJson.h>
  5. #include <LittleFS.h>
  6. #include <Streaming.h>
  7. class WifiConfig
  8. {
  9. private:
  10. String wifiNetworkSsid;
  11. String wifiNetworkPassword;
  12. String softAPSsid;
  13. String softAPPassword;
  14. IPAddress softAPIPAddress;
  15. IPAddress softAPGateway;
  16. IPAddress softAPSubnet;
  17. public:
  18. void setWifiNetWorkSSid(String newWifiNetworkSsid);
  19. String getWifiNetworkSsid();
  20. void setWifiNetWorkPassword(String newWifiNetworkPassword);
  21. String getWifiNetworkPassword();
  22. void setSoftAPSsid(String newSoftAPSsid);
  23. String getSoftAPSsid();
  24. void setSoftAPPassword(String newSoftAPPassword);
  25. String getSoftAPPassword();
  26. void setSoftAPIPAddress(IPAddress newSoftAPIPAddress);
  27. IPAddress getSoftAPIPAddress();
  28. void setSoftAPGateway(IPAddress newAPGateway);
  29. IPAddress getSoftAPGateway();
  30. void setSoftAPSubnet(IPAddress newAPSubnet);
  31. IPAddress getSoftAPSubnet();
  32. StaticJsonDocument<256> toJson();
  33. bool persist(String fileName);
  34. };
  35. #endif //__POWEROUTLET_H__