I use the following circuit to flash my ESP12E -> see attachement. The flashing works (baudrate 115200, Board: NodeMCU 1.0 (ESP-12E Module)), but the program won't start. All i get is a cryptic output in my serial monitor when i reset the ESP12E.
So my flashing-sequence is the following:
GPIO0 is connected to GND
-> Flash (Blink example with a serial.println("Test"); in void loop() to see something in serial monitor), whichs works
-> disconnect GPIO0 from GND
-> opening serial monitor and see nothing
-> connecting RST to GND and get cryptic output (see attachement). Also the LED isn't blinking.
Someone knows this issue? I'll get exactly 3.3V at my ESP12E-VCC (generally speaking on the whole 'red line' in the first attachement).
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
Serial.println("Test");
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}