first of all I wanna thank you for helping me so much !
I finally built my first Arduino Laser Trigger with a LaserPointer and a LDR I never could have done that without your help !
So I did some testing with the LaserTrigger and found out that it doesn't recongize fast moving objects going through the LaserPointer (for example if I go quickly over it with one of my fingers).
Which component does not allow it to recognize fast objects. Is it the LDR or Arduino itself ? Or asked in another way, is there a way to improve the quality ?
Your problem is probably the LDR.
The cadmium sulphide devices don't have very quick response times.
Google photodiode or phototransistor, or have a look in the Playground.
It's probably the LDR. Have you tried using a phototransistor (with a response range for the wavelength of the laser) on one of the digital inputs instead?
I am doing something similar and the Arduino is most probably not the problem. Unless your program is very inefficient. My current results are: (running @16 MHz): maximum lag: 0.5us, time resolution 1 us, frequency jitter <1us, precision better 100ppm. I am still working to get the crystal more precise. But the Atmels are definitely fast enough. The analog parts surrounding it give rise to much bigger delays. For example it is hard to find an affordable flash faster than 20us. Except you are willing to pay >1000 or you are going to build your own flash.
I would guess either the LDR is the issue, or you are polling the LDR. If you use analog in for detection you still have a sample rate of ~50 kHz (or 200us period time).
I've never tested this, but how about using a humble LED as the sensor? Preferably with the same color as the laser. I don't know how fast they are as sensors, but I would think faster than a LDR.
Don't get me wrong !
I am not 100% sure but I think your solutions would short the time btw the light beam beeing broken and the actual trigger, but I don't care much about this one.
But it's about that that it does not recognize fast movings.
And I guess that comes from the LDR's "long" signal falling time ?
Yes, LDRs are slow. Their reaction time (best case) is measured in milliseconds. However if your instrumentation is not very sensitive to small changes then you may see reactions times in the seconds range.