Всех снова приветствую!Вообщем решил все сделать,как и все с помощью прошивки baaaaobab 1.5.4.Все установил в скетче,как мне кажется правильно,но esp почему не может подключиться к серверу.Мучаюсь вопросом - почему?
Сам код:
#include <ESP8266_Lib.h>
#include <BlynkSimpleShieldEsp8266.h>
#include <TimeLib.h>
#include <WidgetRTC.h>
// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "";
//char server[] = "blynk-cloud.com";
char ssid[] = "HUAWEI";
char pass[] = "";
//int port = 8080;
char currentTime[16];
char currentDate[16];
//int pos = 0;
#define EspSerial Serial
#define ESP8266_BAUD 9600
ESP8266 wifi(&Serial);
BlynkTimer timer;
WidgetRTC rtc;
// Digital clock display of the time
void clockDisplay()
{
// You can call hour(), minute(), ... at any time
// Please see Time library examples for details
String currentTime = String(hour()) + ":" + minute() + ":" + second();
String currentDate = String(day()) + " " + month() + " " + year();
Serial.print("Current time: ");
Serial.print(currentTime);
Serial.print(" ");
Serial.print(currentDate);
Serial.println();
// Send time to the App
Blynk.virtualWrite(V1, currentTime);
// Send date to the App
Blynk.virtualWrite(V2, currentDate);
}
void setup()
{
Serial.begin(9600);
// Blynk will work through Serial
// Do not read or write this serial manually in your sketch
EspSerial.begin(ESP8266_BAUD);
Blynk.begin(auth, wifi, ssid, pass, "blynk-cloud.com", 8442);
rtc.begin();
setSyncInterval(10 * 60); // Sync interval in seconds (10 minutes)
// Display digital clock every 10 seconds
timer.setInterval(10000L, clockDisplay);
}
void loop() {
Blynk.run();
timer.run();
}```
Сам модуль выдает такую преамбулу:
```AT
ATE0
AT+GMR
AT+CIPMUX=1
AT+CWMODE?
AT+CWJAP="HUAWEI",""
AT+CIFSR
AT+CIPCLOSE=1
AT+CIPCLOSE=1
AT+CIPSTART=1,"TCP","blynk-cloud.com",8442
AT+CIPSEND=1,37```
И так по кругу постоянно.Для соединения модуля с ардуино использую такой вот адаптер,как на картинке
Подскажите пожалуйста,какую ошибку я допускаю?Вроде все пересмотрел и не увидел учевидного:thinking: