Hi,
I have floating buoys. There is an 20cm diameter space and I was hoping to put a camera system.
I was thinking 3 x SKUB0401 (Ardu mega 5mp cameras) with a battery system underneath (or possibly sleeved in pvc through the float which is about 1.5m full of styrofoam), sealed within a polarised perspex casing.
I want it to take a photo every 15minutes and last about a month.
Does anyone have a link of work with this camera or another in the field so I can get a sense of the image quality (as opposed to ideal āat-a-deskā conditions)?
Has anyone made something similar and is willing to offer some pearls of wisdom?
Iām sure Liam and Michael will try and encourage you to stick with Micropython for this project but if you wanted to stay with Arduino, the Documented examples have a program for writing to SD cards. It would require a bit of reworking to get it to work for your use case but it should be a good starting point.
The cameras use a rolling shutter so there will be some blur, keeping them as stationary as possible would be desired.
Micropython is just so easy to get started and develop with! Dont get me wrong, Arduino is great and has its place for speed and memory intesive projectsā¦but if youre working quickly micropython isnt worth turning away from.
Iāve only tried to run a camera and microSD card from the same microcontroller (Pico).
I had to use 2 different SPI channels (unsure if this is because of my driver or something funny with the SD driver I was using). But was able to capture and save images reliably.
NB: The above is a naive way of using SPI, in your project it might be worth using Arduino and the same SPI channel for the cameras and a new one for saving the images.