I’m building a photo booth app for iOS and Android using Flutter.
One problem that many mobile photo booth softwares have is that they only support static lighting, meaning they have no way to trigger a strobe or speedlight. Static lights (lights that are always on and don’t “flash” like a camera flash) have a few drawbacks compared to strobes and flashes (not as bright, can’t be used to freeze motion, draw a lot of power, etc.)
I really want to find a way to trigger studio strobes and light using the “optical slave” feature that many lights have. Many flashes and strobes have a feature that will trigger the flash when they detect a strong enough light impulse. The light doesn’t have to be visible light. I don’t know what part of the spectrum or the intensity of the light that would be required, nor do any of the flash manufacturers make this public, so this will be a bit of a trial and error experiment. I suppose I could do some experimenting with a light meter to figure out what’s required to trigger the speedlight/strobe.
My idea is to have the app use blutooth to signal something like an RPi, which will then trigger the IR light, which will trigger the flashes.
Why not just use a cable to trigger the lights? Well, often times it’s not practical to have cables ran from the device to the light(s).
Another option I considered is to just use the Pi to trigger a flash that’s mounted in the housing with the tablet, but I’d rather do it with a standalone IR light if possible.