Very new to ESP32 and Arduino IDE. Starting off simple with the following:
Windows 11 OS
IDE 2.3.4
Waveshare ESP32-S3-Touch-LCD-1.85
Trying to upload this basic code as a test from the above guide:
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println("Hello, World!!!");
delay(2000);
}
I then get the following output:
Sketch uses 282525 bytes (8%) of program storage space. Maximum is 3145728 bytes.
Global variables use 18128 bytes (5%) of dynamic memory, leaving 309552 bytes for local variables. Maximum is 327680 bytes.
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\\ssei9\\AppData\\Local\\arduino\\sketches\\A8CAE1EED9F706B5C4370061A497C4AB/srmodels.bin'
Failed uploading: uploading error: exit status 2
I have tried reinstalling IDE and all the library's and such that the usage instructions list out. Searched the directory, and my whole computer, and no instance of the srmodels.bin can be located, although the folder structure is present. Tried a few things I found on this site as well as the internet in general with no change.
Hoping someone can guide me in the right direction.