-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Closed
Description
Platform
- Hardware: ESP-12
- Core Version: [
- Development Env: Arduino IDE
- Operating System: Windows
Settings in IDE
- Module: Wemos D1 mini
- Flash Mode:
- Flash Size: 4MB
- lwip Variant:
- Reset Method:
- Flash Frequency:
- CPU Frequency:
- Upload Using: SERIAL
- Upload Speed: 115200
Problem Description
it cant boot to program i upload . no matter what program is . serial output is always as follow :
ets Jan 8 2013,rst cause:2, boot mode:(1,7)
or sometimes it show up
ets Jan 8 2013,rst cause:2, boot mode:(1,6)
MCVE Sketch
// Digital pin D2 connected to an LED
int ledPin = 2;
void setup() {
// Set pin D2 as output
pinMode(ledPin, OUTPUT);
}
void loop() {
// Turn the LED on
digitalWrite(ledPin, HIGH);
delay(1000); // Wait 1 second
// Turn the LED off
digitalWrite(ledPin, LOW);
delay(1000); // Wait 1 second
}
Debug Messages
ets Jan 8 2013,rst cause:2, boot mode:(1,7)
or sometimes it show up
ets Jan 8 2013,rst cause:2, boot mode:(1,6)
Metadata
Metadata
Assignees
Labels
No labels