Esp32 Wifi problem

Hello, I have a problem with arduino ide and esp32 wroom-32E XXN16.
I have two products with different pcb and the one connect to Wifi and the other one doesnot.
( returns IP address : 0.0.0.0)
Is there any pins that could affect the connection to Wifi?

#include <ArduinoOTA.h>  
#include <WiFi.h>      
const char* ssid = "Your SSID";         
const char* password = "Your Password";  
void setup() {
  WiFi.begin(ssid, password); 
  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
  }
  ArduinoOTA.begin();  
}
void loop() {
  ArduinoOTA.handle();  

}

I moved your topic to an appropriate forum category @elengr99.

In the future, please take some time to pick the forum category that best suits the subject of your topic. There is an "About the _____ category" topic at the top of each category that explains its purpose.

This is an important part of responsible forum usage, as explained in the "How to get the best out of this forum" guide. The guide contains a lot of other useful information. Please read it.

Thanks in advance for your cooperation.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.