Looks to me like the camera has 16 data pins and a pixel clock pin to let you know when to read the data. That's a LOT of data to read. You'll need the datasheet for the camera chip:
Yes. I know the camera need lots of pins. I found that some project was used this C3088 with ATmega16.
However, the Arduino Duemilanove use the ATmega328. It seems that the pins is not enough.
So, is it possible to connect them together? =(
Looks like they read one pixel per scan line so they get one column per field. Since there are 320 columns it will take about 11 seconds to get an entire image and, since the Arduino has no place to store that amount of data, it has to be sent to a host computer as fast as it comes in.
It allows you to read/write many pins using a few.
Thx. But I am not familiar with this product.
After the connection, will the data from the cam be lost? or which pins can connect to the Arduino through this device??
Looks like they read one pixel per scan line so they get one column per field. Since there are 320 columns it will take about 11 seconds to get an entire image and, since the Arduino has no place to store that amount of data, it has to be sent to a host computer as fast as it comes in.
I will connect the SD card board for saving the data and pic. However, I still don't know is it possible to connect them together.