I make pictures with this 1951 press camera (a 4x5 Graflex Speed Graphic) and I wanted a way to check the accuracy of the leaf shutter in the lens as well as the rear curtain shutter.

The only ways I had found to do this are to buy an expensive testing machine, or to pay someone to use that machine they've bought, or the "sound card shutter tester" along with Audacity, which seems pretty kludgy and takes too much human effort.
But with Arduino, I knew I could make something on my own.
So I got an infrared emitter and sensor pair from sparkfun:
http://www.sparkfun.com/commerce/product_info.php?products_id=241
I wired them up like this:

And I wrote a simple sketch:
int receiverPin = 12; // input from the ir receiver.
unsigned long duration; // time shutter is open
void setup()
{
pinMode(receiverPin, INPUT);
Serial.begin(9600);
}
void loop()
{
//digitalWrite(ledPin, !digitalRead(receiverPin)) ;
duration = pulseIn(receiverPin, LOW);
if(duration != 0 )
{
Serial.println(duration);
}
}
I put the emitter on one side of the lens, the sensor on the other, and trip the shutter. The serial console shows me the open duration in microseconds, which I compare to what it should be.
Now I can see how accurate the shutter is, and I can adjust the exposure if necessary. (Or even send the equipment out for repair or adjustment.)
I couldn't get a good picture of the actual hardware today, but I'll be happy to add one later if anyone wants to see it.
Pictures I've made with the camera are here (along some of me using the camera at the inauguration):
http://www.flickr.com/photos/jerrya-net/