Arduino uno with esp-01 to blynk

Before creating the topic

  1. Search forum for similar topics
  2. Check http://docs.blynk.cc and http://help.blynk.cc/
  3. Add details :
    • Hardware model + communication type. For example: Arduino UNO with Ethernet Shield
    • Smartphone OS (iOS or Android) + version
    • Blynk server or local server
    • Blynk Library version
    • Add your sketch code. :point_up:Code should be formatted as example below.

Simply paste your code between ``` If you don’t format your code, your topic can be deleted by moderators.

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

char auth[] = "nZQ5zFNQR6GD-axrMGf_ZqUooMPyOHhK";
char ssid[] = "Pro";
char pass[] = "12345678910";

#define ESP8266_BAUD 9600

ESP8266 wifi(&Serial);

void setup()
{
  Serial.begin(9600);
  delay(10);
    Blynk.begin(auth, wifi, ssid, pass, "blynk.cloud", 80);
}

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

this is my code and this the thing coming in serial monitor

[9] 
    ___  __          __
   / _ )/ /_ _____  / /__
  / _  / / // / _ \/  '_/
 /____/_/\_, /_//_/_/\_\
        /___/ v1.2.0 on Arduino Uno

 #StandWithUkraine    https://bit.ly/swua


[647] Connecting to Pro
AT
[1657] ESP is not responding
AT+CIPCLOSE=1
AT+CIPCLOSE=1
AT+CIPSTART=1,"TCP","blynk.cloud",80
AT+CIPCLOSE=1
AT+CIPSTART=1,"TCP","blynk.cloud",80
AT+CIPCLOSE=1
AT+CIPCLOSE=1
AT+CIPSTART=1,"TCP","blynk.cloud",80

plss help me

You are trying to use the UNO’s single hardware serial port for two different things (communicating with the ESP-01 via AT commands and for serial debugging) at the same time.
You can’t do this, because the two types of messages confuse things.

You may also be communicating with the ESP-01 at the wrong baud rate, and you may not even have AT firmware running on your ESP-01, it’s impossible to tell from the information you’ve provided.

You should read this for more info on this hardware combination…

But the best advice is really to dump the Uno and ESP-01 and use an IoT capable device with sufficient pins, such as a NodeMCU or ESP32.

Pete.