Timing multiple inputs

I'm trying to come up with a design for a circuit that can be used to accurately time the shutter speed of an SLR film camera. I'm basing it on this this project which uses a phototransistor and times how long it takes to go dark->bright->dark. I've got it working but I'd like to add more phototransistors to check consitency across the frame. I know I could just check them one after another in the main loop but given I want to be able to measure sub 1/1000 of a second exposures across multiple sensors I feel this might be too inaccurate. My first thought is to use hardware interrupt pins but I know that's not always the best design and hopefully some of the pins will be changing at the same time. So I was wondering what is the best general approach to measuring multiple inputs at high speed in this sort of situiation?

Would checking them all in the main loop be fast enough or is there some dedicated chip I could use that would solve this? I did think about using and RC circuit and then checking the charge of the capacitor after an exposure but I'd probably then get into the wormhole of having to calibrate for random components which I'd rather not do.

What do you think the shortest period will be ?

I'm not sure you will get different answers at different points. If this is a two-curtain focal plane shutter, the curtains move at the same speed no matter what the shutter speed setting is. What changes the shutter speed is when the second curtain starts to close. For speeds faster than the flash sync speed, you just have a strip of light traveling up the sensor and exposing it. But the curtain speeds are constant, so you should get the same reading no matter where you measure.

1 Like

The shortest shutter time I have on hand is 1/1000th of a second or a millisecond

I'm hoping to use this to test for faulty shutter curtains, it's not uncommon in older cameras for the second curtain to catch up with the first, leading to one edge of the frame being darker than the other. The reason for wanting a grid of snesors rather than just a line is so I can test both vertical and horizontal curtains.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.