[2011] ESP is not responding

что значит ваш код 2011 у ошибки [2011] ESP is not responding??? Ибо ESP f12 уже втрой перепаиваю и одно и тоже. подключение и подтяжки все нормальные

If using the DEBUG mode, then the number in between the [ ] is the milliseconds since boot… in your case it means just over 2 seconds has passed since boot… it is not an error code.

The error message ESP is not responding simply means that the sketch cannot connect to the ESP (are you using the ESP-01?)… Bad wiring? Bad code? Bad power? Who knows but you.

There are many existing topics in this forum all about using the ESP-01 (or equivalent) so please search and read all the troubleshooting options already provided.

Thank you.

http://help.blynk.cc/how-to-connect-different-hardware-with-blynk/arduino/esp8266-with-at-firmware

Wi Fi сеть появляется. подключение и питание отличное просто не первый раз собираю проект на ESP но дело в том что недавно обновлял Arduino IDE и библиотеки Blynk поэтому думаю если это не физическая проблема то может быть программная?

Hard to say. Please supply more details on the hardware & connections you are using and show your code here… properly formatted please.

Blynk%20-%20FTFC

#define BLYNK_PRINT Serial3

#include <ESP8266_Lib.h>
#include <BlynkSimpleShieldEsp8266.h>

// You should get Auth Token in the Blynk App.
char auth[] = "****************";       //Ключ для подключения к WiFi
char ssid[] = "*****";                                  //Логин для подключения к WiFi
char pass[] = "******";                               //Пароль для подключения к WiFi

#define EspSerial Serial2

#define ESP8266_BAUD 115200
ESP8266 wifi(&EspSerial);

void setup()
{
pinMode(12, OUTPUT);   
Serial3.begin(9600);
delay(10);
EspSerial.begin(ESP8266_BAUD);
FNC_LED();
Blynk.begin(auth, wifi, ssid, pass);
FNC_LED();
}

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

void FNC_LED(){
digitalWrite(12,HIGH);
delay(200);
digitalWrite(12,LOW);
delay(200);}

Всегда на других платах работало все тут не хочет запускаться Blynk. Но платы идентичные или дело в ESP хотя я менял два модуля тоде самое. Wi Fi сеть отображается. Индикация при включении есть. Но библиотека не в какую не хочет с ним работать.

What type of board are you uploading your sketch to (and connecting the ESP to)… I am only aware of the Arduino MEGA having a Serial2 option.

Все верно ATMEGA2560

Самое интересное что, на скорости в 57600 ESP-12 при выполнении функции Blynk.begin(auth, wifi, ssid, pass); на плате ESP два раза мигает синий светодиод. На других скоростях реакции от светодиода нету. Но во всех вариантах ошибка одна и та же esp is not responding

But you have the BAUD rate set for

They must be the same.

Try either reprogramming your ESP, via AT commands, for 115200 or setting your sketch for 57600 (if that is what your ESP is already set for)

ESP все живые! на них стоит скорость 115200 не работает!

Well, I don’t know then…

As per other recommended searching and reading in this forum… the ESP as shield process is rather simple…

  • Good power to ESP

  • RX << TX

  • TX >> RX

  • Voltage level shifter may be required between the Arduino’s TX and the ESP’s RX (depending on who you ask)

  • Make sure you are using the correct pins on the ATMEGA for Serial2

  • Make sure ESP is flashed with proper AT firmware and set to proper BAUD (and same BAUD in sketch)

  • Make sure all required pins on ESP are grounded or powered as needed.

…and so on…

Скажите с какими прошивками работает Блинк?

Most any AT firmware that I know of… I am running one for last 1-2 years with whatever ver. it came with from eBay.

Я все перепроверил. Скажите Blynk с какими прошивками работает нормально. Я зашил 0.5 прошивку в ESP все АТ команды работают подключение правильное все отлично а библиотека все равно не хочет видеть его что за фигня и так с другим тоже самое.

Теперь ошибка выходит быстрее по таймингу:

[9]
___ __ __
/ _ )/ /_ _____ / /__
/ _ / / // / _ / '/
/
//_, /////_
/
__/ v0.5.4 on Arduino Mega

[599] Connecting to ihome
[1609] ESP is not responding

Снова перестал реагировать на АТ команды((( вот что пишет на скорости 74800

ets Jan 8 2013,rst cause:2, boot mode:(3,2)

load 0x40100000, len 1396, room 16
tail 4
chksum 0x89
load 0x3ffe8000, len 776, room 4
tail 4
chksum 0xe8
load 0x3ffe8308, len 540, room 4
tail 8
chksum 0xc0
csum 0xc0

2nd boot version : 1.4(b1)
SPI Speed : 40MHz
SPI Mode : QIO
SPI Flash Size & Map: 16Mbit(512KB+512KB)
jump to run user1 @ 1000

Not an issue… a few ms here or there doesn’t mean much… the fact that it cannot communicate is the issue.

Now… have you tried to change that setting?? Google how and then set it for 115200

https://www.google.ca/search?q=change+BAUD+rate+on+esp8266&rlz=1C1CHBF_enCA814CA814&oq=change+BAUD+rate+on+esp8266

На данный момент ESP работает отображается в сети. Опрашивается АТ командами. Вот что он отвечает:

AT


OK
AT+GMR

AT version:0.50.0.0(Sep 18 2015 20:55:38)
SDK version:1.4.0
compile time:Sep 18 2015 21:30:56
OK