Not reaching ping

I am using uno with esp8266

Wifi gets connected but It doesn;t reach ping and it gets stuck in between like this.

@Pavel @Dmitriy @Costas @Lichtsignaal

Try 0.3.7 and see what results you get.

I did. Got the same results

But you shouldn’t be using 0.3.4 at all.

The libraries before 0.3.5 should fail as they were for the old server so don’t waste time even trying.

Please provide your sketch now you have the correct libraries.

i have just connected the esp to uno. normal connections nothing more. this is the code

#define BLYNK_PRINT Serial    // Comment this out to disable prints and save space
#include <ESP8266_Lib.h>
#include <BlynkSimpleShieldEsp8266.h>

// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "";


// Hardware Serial on Mega, Leonardo, Micro...
//#define EspSerial Serial1

// or Software Serial on Uno, Nano...
#include <SoftwareSerial.h>
SoftwareSerial EspSerial(2, 3); // RX, TX

// Your ESP8266 baud rate:
#define ESP8266_BAUD 9600

ESP8266 wifi(&EspSerial);

void setup()
{
  // Set console baud rate
  Serial.begin(9600);
  delay(10);
  // Set ESP8266 baud rate
  EspSerial.begin(ESP8266_BAUD);
  delay(10);
Blynk.begin(auth, wifi, "net_9718015549call", "macbeth123" );
  //Blynk.begin(auth, wifi, "ssid", "pass");
  //Serial.println(AT+CIPSTART= “TCP” , “blynk-cloud.com”, “8080”);
}

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


I am getting no where. Please help @Dmitriy @vshymanskyy @Pavel @Lichtsignaal

i am having the same problem…did you figure it out?

This is a year old topic!!.. Please don’t reopen them with “Me Too” issues… look at the solved ones.