Search found 7 matches

by anhay20171
Tue Aug 16, 2022 1:40 pm
Forum: General Discussion and Questions
Topic: How do you move files inside sdcard with micropython?
Replies: 20
Views: 25483

Re: How do you move files inside sdcard with micropython?

Thank you! It worked! it's amazing when you and the one above all know solution for this issue. I wonder how have you learned to know the solution, i get no results when searching upysh in micropython doc: https://docs.micropython.org/en/latest/ ... ea=default It's true, we need to do more to make ...
by anhay20171
Tue Aug 16, 2022 1:36 pm
Forum: General Discussion and Questions
Topic: stream a video from esp32-cam
Replies: 0
Views: 158975

stream a video from esp32-cam

Hi everyone! Just a tiny question, can I stream/live my "video" taken by esp32-cam on my PC using micropython? (Vscode, thorny,etc...). I kinda want to use some object detection module for this video, so seeing it directly would be a lot useful for me.
Thanks in advance!
by anhay20171
Fri Jul 08, 2022 8:13 am
Forum: General Discussion and Questions
Topic: esp32-cam, send images to webserver continuously
Replies: 2
Views: 3642

Re: esp32-cam, send images to webserver continuously

tepalia02 wrote:
Fri Jul 08, 2022 7:17 am
Looks like a similar problem had been discussed here: https://github.com/espressif/esp-idf/issues/2976
If you do not get any response worthwhile in this forum, I think you can raise your issue in github.
Thank for the reply, I will see it now!
by anhay20171
Fri Jul 08, 2022 7:51 am
Forum: General Discussion and Questions
Topic: How do you move files inside sdcard with micropython?
Replies: 20
Views: 25483

Re: How do you move files inside sdcard with micropython?

the utility upysh from micropython-lib has a cp command. upysh: https://github.com/micropython/micropython-lib/tree/master/micropython/upysh Thank you! It worked! it's amazing when you and the one above all know solution for this issue. I wonder how have you learned to know the solution, i get no r...
by anhay20171
Thu Jul 07, 2022 2:36 pm
Forum: General Discussion and Questions
Topic: esp32-cam, send images to webserver continuously
Replies: 2
Views: 3642

esp32-cam, send images to webserver continuously

Hello! I am currently writing code to make my esp32-cam send images to web continuously but I encounter this error: W (54) boot.esp32: PRO CPU has been reset by WDT. W (54) boot.esp32: WDT reset info: PRO CPU PC=0x40083cc3 W (56) boot.esp32: WDT reset info: APP CPU PC=0x4009089d The error keeps appe...
by anhay20171
Thu Jul 07, 2022 11:08 am
Forum: General Discussion and Questions
Topic: How do you move files inside sdcard with micropython?
Replies: 20
Views: 25483

Re: How do you move files inside sdcard with micropython?

Thank you for this answer. I have another question, what if i want to move files inside sd card to "the outside", such as: uos.rename("sd/a.png","static/a.png") I have tried the above command but encounter: This doesn't work in regular Python either when moving across filesystems. You'd normally us...
by anhay20171
Wed Jul 06, 2022 5:45 am
Forum: General Discussion and Questions
Topic: How do you move files inside sdcard with micropython?
Replies: 20
Views: 25483

Re: How do you move files inside sdcard with micropython?

You can use uos.mkdir(dir) to create a directory, like uos.mkdir("storage"), and use uos.rename() to move files, like: uos.rename("/SD/data0", "/SD/storage/data0"). Thank you for this answer. I have another question, what if i want to move files inside sd card to "the outside", such as: uos.rename(...