Esp8266+Arduino will not connect

Hi,I am going to connect with esp8266 shield to blynk. It connected to the wifi but it not to the blynk. Plaese help me.

Serial monitor:
[9]
___ __ __
/ _ )/ /_ _____ / /__
/ _ / / // / _ / '/
/
//_, /////_
/
__/ v0.5.3 on Arduino Mega

Give Blynk a Github star! => https://github.com/blynkkk/blynk-library

[676] Connecting to ACTIONTEC
[3726] AT version:1.1.0.0(May 11 2016 18:09:56)
SDK version:1.5.4(baaeaebb)
Ai-Thinker Technology Co. Ltd.
Jun 13 2016 11:29:20
OK
[8860] +CIFSR:STAIP,“192.168.1.13”
+CIFSR:STAMAC,“68:c6:3a:de:51:f3”
[8867] Connected to WiFi

Code:

#define BLYNK_PRINT Serial
#include <ESP8266_Lib.h>
#include <BlynkSimpleShieldEsp8266.h>

char auth[] = "71d9d19b17be4da98c3065aa220116f5";


char ssid[] = "ACTIONTEC";
char pass[] = "";


#define EspSerial Serial1


#define ESP8266_BAUD 115200

ESP8266 wifi(&EspSerial);

BlynkTimer timer;


void myTimerEvent()
{
  Blynk.virtualWrite(V5, millis() / 1000);
}

void setup()
{
  Serial.begin(9600);

  EspSerial.begin(ESP8266_BAUD);
  delay(10);

 Blynk.begin(auth, wifi, ssid, pass);
  timer.setInterval(1000L, myTimerEvent);
}

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

Search this forum… using an ESP as a shield with an Arduino has been discussed many many much times and ALL the possible issues solved… no need for yet another topic about it.

Use keywords like UNO, Mega, ESP-01, ESP8266, Shield

Look for things like power and proper RX to TX connections

Adding Baudrate to the shopping list

True… but in this case 115200 is fine with Serial1 on a Mega or other capable board.

Ups, I didn’t realise about it. :sweat_smile:
You are right!

A post was split to a new topic: Connection problem - unknown model of Arduino + ESP-01