But every time I click on "Get version", it says timeout.
I also tried the arduino library, but as expected, I does not work either.
What am I missing ?
My unit has the following specifications:
Baud Rate: 38400 bps
Picture: VGA
Electronic Level: COMS
Video Format: PAL(R5 NULL)
Power: DC 5V
Could the problem come from the electronical level ? This one uses CMOS, not TTL as the unit from Adafruit. If yes, is there a possibility to convert the signals to TTL ? (logical level is 3.3V)
Thanks for any kind of help, I am really stuck here =(
You have to connect TX on one unit to RX on the other! The photo also shows
a resistor divider the wrong way round on the Arduino RX line - if the Arduino
is 5V and the camera if 3.3V then the divider needs to go from the Arduino TX
to drop the voltage down to the camera's RX.
TX = "transmit",
RX = "receive" - each wire needs to connect a transmit pin to a receive pin...
[Ah, just read the caveat on the Adafruit site - some cameras have RX/TX marked
wrong. However the voltage divider is definitely wrong in that image.]
I found this post trying to resolve the same issue. Even after re-wiring Arduino's TX to camera's RX and resistors I am still getting "Cmd time out" error in Comm Tool.
Is this the right camera for Arduino? I am attaching a pic of connections. Green wire is connected to TX, white to RX on the camera. What can I be doing wrong?
Better but it is not clear if you have the right wires on the camera module.
The resistor divider shows you using two 10K resistors. This cuts down a 5V signal to 2.5V. You should try a 510R series resistor with a 1K pull down to ground. This will give you 3.3V at a better impedance to drive your signal.
You need two resistors, one id 510R the one you posted will do but there are dozens of others. That goes from your arduino to your camera. You need a second resistor this time one with a value of 1K that goes between the camera and ground. They replace the two resistors you have wired up at the moment.
I am working on a project in which I should interface vc0706 camera with arduino (Here I am using arduino uno).
I have interfaced it but I am getting "cmd time out" error even after changing the baud rates and ports.I have even tried exchanging transmitter and receiver pins but found the same error.
I finally found the problem! Since the module RX and TX pins work with RS232 protocol, therefore you must convert them to TTL protocol or use the MAX3232 IC RX and TX (on the shield) directly and connect them to arduino. So :
Green wire must be connected to Arduino RX (software pin) and purple to Arduino TX.
1- I know that my soldering skill is ridiculous
2- please, inform me if my solution works