#include "Config.h" /// /// 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. /// /// WiFi SSID for the access point const char* Config::WIFI_SSID = "MINOLTA_REMOTE_CONTROL"; /// WiFi password for secure access point connection const char* Config::WIFI_PASSWORD = "12345678"; /// Static IP address assigned to the ESP8266 access point const IPAddress Config::WIFI_IP(192, 168, 1, 200); /// Gateway IP address for the local network const IPAddress Config::WIFI_GATEWAY(192, 168, 1, 1); /// Subnet mask for the local network const IPAddress Config::WIFI_SUBNET(255, 255, 255, 0);