How did you connect the flash to the arduino?
cthrough007 2 months ago
@cthrough007
goo(dot)gl/OVNsi
+
goo(dot)gl/a1Gjw
All You need to do is close the cable. I use a Solid State Relay like this one: goo(dot)gl/oe7yX
windmis 2 months ago
Very nice build! More professional than most I've seen with the LCD display and keypad to control features and the calibration all set independantly.
I would be very interested in a documentation of the schematic and code!
thanks for sharing.
photographe06 6 months ago
hi do you have a link to code- please post it. alos what captor did you use for the laser part..
Thanks
castelsylv 7 months ago
@castelsylv I use a simple LDR (photoresistor) to measure the laser beam.
When the measured value is lower as some callibration value, then I trigger the flash.
An example Code:
int normalLaserValue = 0;
void setup()
{ //calibration int normalLaserValue = analogRead(0);
}
void loop()
{ // 20 ist the trigger sensibility if ( analogRead(0) < (normalLaserValue - 20) ){ triggerFlash(); }
windmis 7 months ago
How did you connect the flash to the arduino?
cthrough007 2 months ago
@cthrough007
goo(dot)gl/OVNsi
+
goo(dot)gl/a1Gjw
All You need to do is close the cable. I use a Solid State Relay like this one: goo(dot)gl/oe7yX
windmis 2 months ago
Very nice build! More professional than most I've seen with the LCD display and keypad to control features and the calibration all set independantly.
I would be very interested in a documentation of the schematic and code!
thanks for sharing.
photographe06 6 months ago
hi do you have a link to code- please post it. alos what captor did you use for the laser part..
Thanks
castelsylv 7 months ago
@castelsylv I use a simple LDR (photoresistor) to measure the laser beam.
When the measured value is lower as some callibration value, then I trigger the flash.
An example Code:
int normalLaserValue = 0;
void setup()
{ //calibration int normalLaserValue = analogRead(0);
}
void loop()
{ // 20 ist the trigger sensibility if ( analogRead(0) < (normalLaserValue - 20) ){ triggerFlash(); }
}
windmis 7 months ago