In this video I will show you how I build a chronograph using Arduino
Note: Works best in the range of 0-100FPS
I will post the calibrator code below but for the Chono code you will have to get it off the video it makes the description too long:(
Calibrator Code:
int firstsens = 4;
int secondsens = 5;
int val;
int val2;
void setup()
{
Serial.begin(9600);
pinMode (firstsens, INPUT);
pinMode (secondsens, INPUT);
}
void loop()
{
val = analogRead(firstsens);
val2 = analogRead(secondsen
آی-ویدئو