You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Shutter is not clickable for whatever reason on this bit of code, replicated the issue on different system.
void setupWiFi()
{
#ifdef SOFTAP_MODE
Serial.println("Configuring access point...");
uint8_t mac[6];
char buff[128];
WiFi.macAddress(mac);
sprintf(buff, "T-Higrow-%02X:%02X", mac[4], mac[5]);
WiFi.softAP(buff);
Serial.printf("SERIVE IS running at 192.168.4.1 %s \n", buff);
Shutter is not clickable for whatever reason on this bit of code, replicated the issue on different system.
void setupWiFi()
{
#ifdef SOFTAP_MODE
Serial.println("Configuring access point...");
uint8_t mac[6];
char buff[128];
WiFi.macAddress(mac);
sprintf(buff, "T-Higrow-%02X:%02X", mac[4], mac[5]);
WiFi.softAP(buff);
Serial.printf("SERIVE IS running at 192.168.4.1 %s \n", buff);
#else
WiFi.mode(WIFI_STA);
#endif
server.begin();
}
The text was updated successfully, but these errors were encountered: