Arduino.cc Cloud IDE
Esp32-Wroom-DA module
I've been using the Arduino Cloud IDE for quite some time, and last night I tried flashing my ESP 32 with the default ESP-DASH sketch. It mentioned that it needs some specific dependencies / libraries which I downloaded by the links they provided.
On the cloud IDE Library tab under custom, I uploaded the necessary zip files and clicked "include". Afterwards the ESP-DASH sketch finally compiled without errors, but as soon as it tries to upload / flash it spits out a ton of errors...
Sketch uses 909417 bytes (69%) of program storage space. Maximum is 1310720 bytes.
Global variables use 44116 bytes (13%) of dynamic memory, leaving 283564 bytes for local variables. Maximum is 327680 bytes.
Flashing with command:C:/Users/Administrator/.arduino-create/esp32/esptool_py/4.5.1/esptool.exe --chip esp32 --port COM14 --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 80m --flash_size 4MB 0x1000 C:/Users/ADMINI~1/AppData/Local/Temp/extrafiles1264457166/new_sketch_1733826927382.bootloader.bin 0x8000 C:/Users/ADMINI~1/AppData/Local/Temp/extrafiles1264457166/new_sketch_1733826927382.partitions.bin 0xe000 C:/Users/ADMINI~1/AppData/Local/Temp/extrafiles1264457166/tools/partitions/boot_app0.bin 0x10000 C:/Users/ADMINI~1/AppData/Local/Temp/arduino-create-agent517029287/new_sketch_1733826927382.bin
usage: esptool write_flash [-h] [--erase-all]
[--flash_freq {keep,80m,60m,48m,40m,30m,26m,24m,20m,16m,15m,12m}]
[--flash_mode {keep,qio,qout,dio,dout}]
[--flash_size {detect,keep,256KB,512KB,1MB,2MB,2MB-c1,4MB,4MB-c1,8MB,16MB,32MB,64MB,128MB}]
[--spi-connection SPI_CONNECTION] [--no-progress]
[--verify] [--encrypt]
[--encrypt-files <address> <filename> [<address> <filename> ...]]
[--ignore-flash-encryption-efuse-setting] [--force]
[--compress | --no-compress]
<address> <filename> [<address> <filename> ...]
esptool write_flash: error: argument <address> <filename>: [Errno 2] No such file or directory: 'C:/Users/ADMINI~1/AppData/Local/Temp/extrafiles1264457166/new_sketch_1733826927382.bootloader.bin'
Executing command: exit status 2
So after trying for a while I gave up and removed the custom libraries I had uploaded.
I then tried to compile and upload a sketch that was working fine just last week, and again it compiled just fine but as soon as it tries to upload it spit out a ton of errors.
Sketch uses 909417 bytes (69%) of program storage space. Maximum is 1310720 bytes.
Global variables use 44116 bytes (13%) of dynamic memory, leaving 283564 bytes for local variables. Maximum is 327680 bytes.
Flashing with command:C:/Users/Administrator/.arduino-create/esp32/esptool_py/4.5.1/esptool.exe --chip esp32 --port COM14 --baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 80m --flash_size 4MB 0x1000 C:/Users/ADMINI~1/AppData/Local/Temp/extrafiles1264457166/new_sketch_1733826927382.bootloader.bin 0x8000 C:/Users/ADMINI~1/AppData/Local/Temp/extrafiles1264457166/new_sketch_1733826927382.partitions.bin 0xe000 C:/Users/ADMINI~1/AppData/Local/Temp/extrafiles1264457166/tools/partitions/boot_app0.bin 0x10000 C:/Users/ADMINI~1/AppData/Local/Temp/arduino-create-agent517029287/new_sketch_1733826927382.bin
usage: esptool write_flash [-h] [--erase-all]
[--flash_freq {keep,80m,60m,48m,40m,30m,26m,24m,20m,16m,15m,12m}]
[--flash_mode {keep,qio,qout,dio,dout}]
[--flash_size {detect,keep,256KB,512KB,1MB,2MB,2MB-c1,4MB,4MB-c1,8MB,16MB,32MB,64MB,128MB}]
[--spi-connection SPI_CONNECTION] [--no-progress]
[--verify] [--encrypt]
[--encrypt-files <address> <filename> [<address> <filename> ...]]
[--ignore-flash-encryption-efuse-setting] [--force]
[--compress | --no-compress]
<address> <filename> [<address> <filename> ...]
esptool write_flash: error: argument <address> <filename>: [Errno 2] No such file or directory: 'C:/Users/ADMINI~1/AppData/Local/Temp/extrafiles1264457166/new_sketch_1733826927382.bootloader.bin'
Executing command: exit status 2
I've tried to uninstall the Arduino Cloud agent software from my PC and reinstalled hoping that might help, but still no change.
I'd appreciate any help!