Before creating the topic
- Search forum for similar topics
- Check http://docs.blynk.cc and http://help.blynk.cc/
- 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. 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