Hi, first of all i should say I'm new to Arduino. I'm doing a project on capturing an image through ArduCam ov2640 and store it in a SD card and sending the image to my PC through Wi-Fi (NodeMCU) for further processing. Can anyone provide me a code to perform the above task? Specially i need the code to send the image in the SD card to PC via Wi-Fi.
Thank you.
Can anyone provide me a code to perform the above task?
"The above task" is not one discrete step.
You need to be able to take a picture.
You need to be able to get the data from the camera, and store it in a file on the SD card.
Then, you need to define whether the ESP is a client, and the PC a server, or the ESP is a server and the PC the client.
If the ESP is a server, then the page that it serves can contain a link to the image file. The browser, or other app on the PC, should then make a second request, to get the image file. Serving that up is quite straightforward.
We need a lot more information about what you are trying to do, and having problems with. "The whole thing" just means that this project is not possible for you at this time. With more experience, it would be.
Ok this is the place what I'm having the problem. I don't know how to send an image in the SD card to a specific folder in my PC via NodeMcu. How can i do that?