Unable to connect to Wifi

Unable to connect my esp32 board with Blynk
Please help me with this.

Impossible, without more info, such as the sketch that you’ve uploaded to your ESP32.
Don’t forget to put triple backticks at the beginning and end of your sketch when you post it.
Triple backticks look like this:
```

I’d suggest posting your serial monitor output too, also with triple backticks at the beginning and end.

Pete.


#include<LiquidCrystal.h>
LiquidCrystal lcd(13,12,14,27,26,25);
#define BLYNK_PRINT Serial
#include"EmonLib.h"
#include<WiFi.h>
#include<WiFiClient.h>
#include<BlynkSimpleEsp32.h>
EnergyMonitor emon;
#define vCalibration 83.3
#define currCalibration 0.50
BlynkTimer timer;
char auth[]="-----------------------------------";
char ssid[]="MUSK";
char pass[]="12345678";
float kWh=0;
unsigned long lastmillis=millis();

void myTimerEvent()
{
emon.calcVI(20,2000);
kWh=kWh+emon.apparentPower*(millis()-lastmillis)/3600000000.0;
yield();
Serial.print("Vrms:");
Serial.print(emon.Vrms,2);
Serial.print("V");
Serial.print("\tIrms:");
Serial.print(emon.Irms,4);
Serial.print("A");
Serial.print("\tPower:");
Serial.print(emon.apparentPower,4);
Serial.print("W");
Serial.print("\tkWh:");
Serial.print(kWh,5);
Serial.println("kWh");
lcd.clear();
lcd.setCursor(0,0);
lcd.print("Vrms:");
lcd.print(emon.Vrms,2);
lcd.print("V");
lcd.setCursor(0,1);
lcd.print("Irms:");
lcd.print(emon.Irms,4);
lcd.print("A");
delay(2500);
lcd.clear();
lcd.setCursor(0,0);
lcd.print("Power:");
lcd.print(emon.apparentPower,4);
lcd.print("W");
lcd.setCursor(0,1);
lcd.print("kWh:");
lcd.print(kWh,4);
lcd.print("W");
delay(2500);
lastmillis=millis();
Blynk.virtualWrite(V0,emon.Vrms);
Blynk.virtualWrite(V1,emon.Irms);
Blynk.virtualWrite(V2,emon.apparentPower);
Blynk.virtualWrite(V3,kWh);
}
void setup()
{
Serial.begin(9600);
Blynk.begin(auth,ssid,pass);
lcd.begin(16,2);
emon.voltage(35,vCalibration,1.7);//Voltage:inputpin,calibration,phase_shift
emon.current(34,currCalibration);//Current:inputpin,calibration.
timer.setInterval(5000L,myTimerEvent);
lcd.setCursor(3,0);
lcd.print("IoTEnergy");
lcd.setCursor(5,1);
lcd.print("Meter");
delay(3000);
lcd.clear();
}
void loop()
{
Blynk.run();
timer.run();
}

You should start with a very basic sketch first just to make sure everything is working properly.
also, posting your serial monitor output would be very useful as @PeteKnight suggested.

As I said earlier, you should copy the text from your serial monitor and paste it between triple backticks, rather than posting screenshots.

Are you 100% sure that the SSID and WiFi password are correct (both are case sensitive).

Do you have anything connected to pins 1 or 3 on your ESP32 ?

Pete.

15:50:54.827 -> connecting to MUSK

Apologies for the inconvenience. The above is getting printed.
And I am positive that the SSID and WiFi password are correct, case sensitivity considered. Also, there is no connection to pin 1 and pin3.

Shifani.

In that case, I’d do as @John93 suggests and try a basic Blynk sketch for the ESP32 and get that working first.

In your screenshot you were getting some additional characters between your timestamp and the readable message. Have you edited these out in the text you pasted above?
These characters aren’t normal, and would indicate a problem to me.

Pete.