Issues with configuring WiFi between ESP32 and Blynk app

Hello All,

I am new to this forum. I was trying to configure WiFi on Blynk app however I can’t navigate beyond one point as below:

After I select the device name,it goes back to the previous page(Ready). I updated the Blynk credentials and tried many options however I can’t move past this problem. Here is the code that I flashed on my device successfully:

#define BLYNK_TEMPLATE_ID "TMPLtigUwLPt"
#define BLYNK_DEVICE_NAME "LED blink"

#define BLYNK_FIRMWARE_VERSION        "0.1.0"

#define BLYNK_PRINT Serial
//#define BLYNK_DEBUG

#define APP_DEBUG

// Uncomment your board, or configure a custom board in Settings.h
#define USE_Adafruit Huzzah_ESP32 FEATHER BOARD

#include "BlynkEdgent.h"
BLYNK_WRITE(V0)
{
int pinValue = param.asInt();
digitalWrite(13,pinValue);
}

void setup()
{
  pinMode(13,OUTPUT);
  Serial.begin(115200);
  delay(100);

  BlynkEdgent.begin();
}

void loop() {
  BlynkEdgent.run();
}

Awaiting for valuable suggestions.

@Tara please edit your post, using the pencil icon at the bottom, and add triple backticks at the beginning and end of your code so that it displays correctly.
Triple backticks look like this:
```

Pete.

Hello Sir,
I can see the change in display of code by adding triple backticks as per your suggestion. I am totally new to these things. Thank you for your suggestion.

I’ve been having this problem too. Only with Edgent though. Can’t figure out why