Page 1 of 1

Uploading project to ESP32 with terminal and OTA

Posted: Sat Mar 22, 2025 9:14 pm
by Renaud
Hello,

For my project, I need to let the user update the firmware and data with OTA.

This is working:
python3 espota.py -i 192.168.129.25 -p 3232 -f firmware.bin

This is not working:
python3 espota.py -i 192.168.129.25 -p 3232 -f littlefs.bin
Response: [ERROR]: No response from device

Any idea what is wrong?
Thank you in advance.
Renaud

Re: Uploading project to ESP32 with terminal and OTA

Posted: Tue Mar 25, 2025 8:29 pm
by akshay9
Hi @Renaud,
ArduinoOTA works on top of ESP-IDF for APP partition. Hence for data either:

1. You have to update ArduinoOTA or
2. Write a custom code.

Happy to discuss further. You can contact me on slack
https://join.slack.com/t/hal-fpo6396/sh ... t2N3QYRKRg

Best,
Akshay

Re: Uploading project to ESP32 with terminal and OTA

Posted: Wed Mar 26, 2025 8:51 pm
by Renaud
After digging, the following command is working :D
python3 espota.py -i 192.168.129.25 -p 3232 -f littlefs.bin --spiffs