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