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.
ERROR: rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
-
- Posts: 3
- Joined: Wed Aug 04, 2021 10:24 pm
Re: ERROR: rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
I'd suggest to first remove all connections and try to run. If this runs, check whether you were using the correct pins.
Erasing the flash is best done with an ESP-IDF tool available in all ESP* frameworks: `esptool.py erase_flash`. (Sometimes helpful also `esptool.py flash_id`).
Erasing the flash is best done with an ESP-IDF tool available in all ESP* frameworks: `esptool.py erase_flash`. (Sometimes helpful also `esptool.py flash_id`).
-
- Posts: 3
- Joined: Wed Aug 04, 2021 10:24 pm
Re: ERROR: rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
Thanks for the suggest, i could already fix the problemullixesp wrote: ↑Mon Aug 09, 2021 7:52 amI'd suggest to first remove all connections and try to run. If this runs, check whether you were using the correct pins.
Erasing the flash is best done with an ESP-IDF tool available in all ESP* frameworks: `esptool.py erase_flash`. (Sometimes helpful also `esptool.py flash_id`).
Re: ERROR: rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
how You fix this problem, i have the same(hanshasn12345678 wrote: ↑Mon Aug 09, 2021 7:35 pmThanks for the suggest, i could already fix the problemullixesp wrote: ↑Mon Aug 09, 2021 7:52 amI'd suggest to first remove all connections and try to run. If this runs, check whether you were using the correct pins.
Erasing the flash is best done with an ESP-IDF tool available in all ESP* frameworks: `esptool.py erase_flash`. (Sometimes helpful also `esptool.py flash_id`).
Who is online
Users browsing this forum: No registered users and 54 guests