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
I'm not expert of IdF but better with ESP32 Arduino package, would it be complicated to add option to have PEAP WiFi option?
We're in a company building where wifi is not open but works with PEAP, on Arduino ESP32 we just do something like that and it's working fine, not sure how to do with IDF.
// we got PEAP Auth config?if (EAPname!="" && EAPuser!="" && EAPpass!="" ) {
WiFi.begin(EAPname, WPA2_AUTH_PEAP, EAPuser, EAPuser, EAPpass);
// wait 30s to connectif (!checkAPConnection(30)) {
Serial.print("Failed to connect using PEAP Auth, fallback to classic");
}
}
// in case PEAP failed or not configured, just use classic WiFi SSID/Passif (WiFi.status() != WL_CONNECTED) {
WiFi.begin(APname, APpass);
connected = checkAPConnection(45);
}
Thanks
The text was updated successfully, but these errors were encountered:
hallard
changed the title
Feature Request : Add WiFi PEAP
Feature Request : Add WiFi PEAP Auth
Jun 11, 2023
I'm not expert of IdF but better with ESP32 Arduino package, would it be complicated to add option to have PEAP WiFi option?
We're in a company building where wifi is not open but works with PEAP, on Arduino ESP32 we just do something like that and it's working fine, not sure how to do with IDF.
Thanks
The text was updated successfully, but these errors were encountered: