This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Camera with nrf52

I am following blogs and questions for image transfer with nrf52 and arducam on this site and github. I can see we can use arducam OV2640 module. It has FPGA chip at back. It is very costly around 50 Uk Pounds around 60 USD on amazon uk.

Can we use another module which is at lower cost like "Arducam Mini module Camera Shield 2 MP OV2640" it is around 10 usd.

Image: image description image description

When working on camera with nordic what specifications should we look so it can work with nrf52?

Parents
  • Hi

    The main difference between this module and the one used in our example is that this one has a parallel output, while the more expensive option has a chip that converts the parallel interface to a standard SPI slave interface.

    We don't have any dedicated hardware for parallel data transfer, so to use this module you would essentially have to bit bang the communication. This is fully doable since the module has a slave mode (allowing the Nordic device to set the clock), but since we don't have software for it someone would have to develop the low level driver.

    Alternatively, if someone else has written a bit banged driver for a different MCU you might be able to port it to the nRF52 (just make sure you still abide by the specification).

    Best regards
    Torbjørn

Reply
  • Hi

    The main difference between this module and the one used in our example is that this one has a parallel output, while the more expensive option has a chip that converts the parallel interface to a standard SPI slave interface.

    We don't have any dedicated hardware for parallel data transfer, so to use this module you would essentially have to bit bang the communication. This is fully doable since the module has a slave mode (allowing the Nordic device to set the clock), but since we don't have software for it someone would have to develop the low level driver.

    Alternatively, if someone else has written a bit banged driver for a different MCU you might be able to port it to the nRF52 (just make sure you still abide by the specification).

    Best regards
    Torbjørn

Children
No Data
Related