Last week a friend ask me to help set up a garage door opener and I had some more ESP8266EX’s so I started to work.
The ESP8266EX I am using is a Manufacturer: e0 Device: 4014
The FTDI is a 1232.
The IDE is Arduino 1.8.5
The ESP lib is esp8266 Community 2.4.1
The ESP Lib Selected is “Generic ESP8266 Module”
The test script is:
void setup() {
pinMode(0, OUTPUT);
}
void loop() {
digitalWrite(0, HIGH);
delay(500);
digitalWrite(0, LOW);
delay(500);
}
Everything looks good. I can load the script. It reaches 100% then the red light goes very dim and that is it. Nothing…
I reboot, 50% of the time the red light is bright, and sometimes I can get some console logging that has this:
Ets Jan 8 2013, rst cause :4 Boot mode:(3,7)
Wdt reset
Load 0x4010f000, len 1384, room 16
Tail 8
Chksum 0x2d
Csum 0x2d
V614f7c32
~ld
Any Hint as to what I am doing wrong?