Linksprite Camera TTL problem

Hello,
I bought this camera last week and I am try to figure out how to capture the picture and save it.
I used the library http://www.sparkfun.com/datasheets/Sensors/Imaging/JPEG%20Camera%20Libraries.zip and the example from Linksprite website, but in the both ways I couldn't see a picture.
Arduino receives some information but when I am trying to display the jpeg on my computer , I can't open the file.

Someone has tried to take a picture and save it?

Right now I ordered the breakout http://www.sparkfun.com/products/9716 to check if I can take a picture from the Linksprite program.

Also I tried this code:

#include <NewSoftSerial.h>


NewSoftSerial Serial1(4,5);   

void SendResetCmd();


byte incomingbyte;

void setup() {
  Serial.begin(9600);
  Serial1.begin(38400);
  
}
void loop(){
  
   
    Serial.println("about to take picture...");
    SendResetCmd();
  //  delay(4000);  
  while(1) {  
    while(Serial1.available()>0)

      {

        incomingbyte=Serial1.read();
        Serial.print(incomingbyte,HEX);
        Serial.print(" ");

      }  
  Serial.println("");
 delay(1000); 
}
      
      
    
} 

void SendResetCmd()
{
      Serial1.print(0x56, BYTE);
      Serial1.print(0x00, BYTE);
      Serial1.print(0x26, BYTE);
      Serial1.print(0x00, BYTE);
}

To check the answer after resetting the camera and I am getting that:

B6 80 93 40 C0 96 A1 98 13 69 9 9 B2 C1 C1 15 14 D F1 E4 D8 A0 B4 B7 53 5C 48 39 AF AD E 97 88 AC 6A D5 E4 5A A4 B2 B3 1A 6B 45 5 DA D5 DC E6 AF B9 8D 85 9B 59 8D 21 E1 89 B7 B4 5A 48

I looked the manual and it said that I should get "76 00 26 00".

I tried to use 3.3 and 5.0 volt but nothing is changed.

If you search in the upper right for linksprite you get three pages with threads discussing this (family of) cams. Might include one that will save the day :wink:

I was looking on the forum but I think I have a special problem, maybe when how I wired the camera.

I found this page TTL Serial Camera Tutorial , Should I wire the camera the same?