Hola a todos,
Documento mi proyecto aqui, para un camara Nilon D5000
Materiales:
Placa Arduino UNO
http://www.arduino.cc/es/ Protoboard yo use uno mini
1 led
2 resistencias de 360Ohm
1 resistencia de 220Ohm
2 Optoaisladores, yo use 4N25
1 Fotoresistor (LDR)
Cable de control remoto (MC-DC2) yo use uno chino

Codigo:
int ledPin = 13; // LED en el pin 13
int Shutter = 4;//Pin shutter
int Focus = 5;//Pin Focus
int LDR = 0;//Pin de Fototransistor
int val ;
void setup(){
pinMode(ledPin, OUTPUT);//Led
pinMode(Shutter, OUTPUT);//Shutter
pinMode(LDR, INPUT);
}
void loop(){
val = analogRead(LDR);
if (val < 800) {
digitalWrite(ledPin, LOW); // apaga LED
}else{//Toma foto
digitalWrite(ledPin, HIGH); // prende LED
tomaFoto();
}
}
void tomaFoto(){
digitalWrite(ledPin, HIGH); // prende LED
digitalWrite(Focus, HIGH);
digitalWrite(Shutter, HIGH);
delay(100);//Dar tiempo al led para verlo y shutterlag
digitalWrite(Focus, LOW);
digitalWrite(Shutter, LOW);
digitalWrite(ledPin, LOW);
}

Y ya en una caja!

Como funciona:
Y una foto rápida sin muchos detalles y preparaciones:

Referencias:
www.instructables.com/id/Nikon-D90-MC-DC2-Remote-Shutter-Hack/#step1www.nikonistas.com/digital/foro/index.php?showtopic=164621Saludos y espero que le sirva a mas de uno!