<solved> ESP12 seems dead
Posted: Thu Oct 08, 2015 1:02 pm
Hi guys,
I'm testing ESP12 with this simple sketch:
After some successful upload to ESP12 it stopped to communicate through serial!
If power cycle ESP12 in flash mode the serial monitor stays empty (no rubbish chars).
If I press "Upload" on Arduino IDE the blue led of ESP12 makes a bunch of blinks at regular intervals (it doesn't flashes fast like when writing the sketch) and then I get the error "error: espcomm_open failed" on Arduino IDE.
Now I'm no more able to communicate with ESP12 through serial and it can't be reflashed.
Can you help me in finding the trouble?
I never had this issue and I was writing sketches without issues!!
Thanks
Big
I'm testing ESP12 with this simple sketch:
Code: Select all
void setup() {
// I want GPIO13 as input pin
pinMode(13, INPUT);
Serial.begin(115200);
Serial.println("Started...");
}
// the loop function runs over and over again forever
void loop() {
Serial.println("Hello!");
delay(3000); // wait for a second
}
After some successful upload to ESP12 it stopped to communicate through serial!
If power cycle ESP12 in flash mode the serial monitor stays empty (no rubbish chars).
If I press "Upload" on Arduino IDE the blue led of ESP12 makes a bunch of blinks at regular intervals (it doesn't flashes fast like when writing the sketch) and then I get the error "error: espcomm_open failed" on Arduino IDE.
Now I'm no more able to communicate with ESP12 through serial and it can't be reflashed.
Can you help me in finding the trouble?
I never had this issue and I was writing sketches without issues!!
Thanks
Big