Config.cpp 846 B

12345678910111213141516171819202122
  1. #include "Config.h"
  2. /// <summary>
  3. /// Static initialization of WiFi configuration values.
  4. /// These values define the WiFi access point credentials and network settings
  5. /// that the ESP8266 will use when operating as an access point.
  6. /// </summary>
  7. /// <summary>WiFi SSID for the access point</summary>
  8. const char* Config::WIFI_SSID = "MINOLTA_REMOTE_CONTROL";
  9. /// <summary>WiFi password for secure access point connection</summary>
  10. const char* Config::WIFI_PASSWORD = "12345678";
  11. /// <summary>Static IP address assigned to the ESP8266 access point</summary>
  12. const IPAddress Config::WIFI_IP(192, 168, 1, 200);
  13. /// <summary>Gateway IP address for the local network</summary>
  14. const IPAddress Config::WIFI_GATEWAY(192, 168, 1, 1);
  15. /// <summary>Subnet mask for the local network</summary>
  16. const IPAddress Config::WIFI_SUBNET(255, 255, 255, 0);