ERROR: rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
Posted: Sun Aug 08, 2021 8:22 pm
Hello everyone!
I'm beginner with the ESP32,
I'm trying show values of a 3 pin Photosensitive sensor with the ESP32 DevKitV1 in the monitor serie but in the moment of compile the program and see the monitor serie appear a next message:
My code is:
int sensorValue;
void setup()
{
Serial.begin(9600); // starts the serial port at 9600
}
void loop()
{
sensorValue = analogRead(25); // read analog input pin D25 of the ESP32
Serial.print(sensorValue, DEC); // prints the value read
Serial.print(" \n"); // prints a space between the numbers
delay(1000); // wait 100ms for next reading
}
I have conected the DO pin on D25 of ESP32 pin, pin GND on the GND and VCC pin on 3v3.
I tried erase the flash with flash_download_tool_3.8.8 without lucky
Thanks.
I'm beginner with the ESP32,
I'm trying show values of a 3 pin Photosensitive sensor with the ESP32 DevKitV1 in the monitor serie but in the moment of compile the program and see the monitor serie appear a next message:
My code is:
int sensorValue;
void setup()
{
Serial.begin(9600); // starts the serial port at 9600
}
void loop()
{
sensorValue = analogRead(25); // read analog input pin D25 of the ESP32
Serial.print(sensorValue, DEC); // prints the value read
Serial.print(" \n"); // prints a space between the numbers
delay(1000); // wait 100ms for next reading
}
I have conected the DO pin on D25 of ESP32 pin, pin GND on the GND and VCC pin on 3v3.
I tried erase the flash with flash_download_tool_3.8.8 without lucky
Thanks.