Skip to main content

The laser trigger hardware

The hardware for the laser setup is relatively simple. A basic PCB (printed circuit board) was developed for the various components plug in to. Prior to the PCB there were several prototyping stages, going from a breadboard to a slightly more permanent soldered strip board but these were too frustrating to work with. In the past I've created PCBs using both etching and milling but for this project the time seemed right to try some of the cheap PCB manufacturers based in China.

A bare PCB and a fully populated one.


The laser controller hardware is centered around an inexpensive Arduino Pro Mini board with some supporting components. The board has been laid out so it can be populated as a single, standalone unit but it could equally be housed in a dedicated case with the input and output jacks connected to the board via wires rather than soldered on directly. This is the approach I'm starting to favour so my next assembly might take advantage of this flexibility.

The lasers I've found to be the most reliable are these Quarton Laser Modules from Amazon. These are not inexpensive, but compared to cheap lasers you can pick up off ebay these seem to work flawlessly. They seem to be extremely reliable and ideal for my particular use case. The documentation with the laser states that it has a 650nm wavelength and this is a sufficiently common wavelength to make choosing sensors easy.

I went with these phototransistors for sensors and they work well in combination with the laser module. They do detect a reasonably wide spectrum range however  (450nm to 1100nm) so they do need to be shielded from ambient light. There will be more on the design of the laser and sensor housing design in another post.

The challenge with this board was trying to keep it as inexpensive as possible while still providing a decent choice of features. More user controlled options necessarily increases the user interface complexity so the challenge was to provide some degree of flexibility with minimal components. As I'm using the board more in real world setups though, I'm noticing that a single mode is sufficient so no user interaction is really required other than switching between setup mode and active mode. This simplifies everything greatly as it means there is less code to go wrong, less parts to solder on to the board and less remembering how things work. The option is always there though to provide more complex options.

Comments

Popular posts from this blog

Experimental macro flash diffuser

The abundance of insects over the last couple of months has been a perfect opportunity to experiment with different macro flash setups. Using a standard speedlight as-is isn't really an option, as the light is projected out much further than the front of the lens (which is exactly what you'd normally want a speedlight to do) and is much too harsh. There are therefore two problems that need to be solved; diffusing the light and directing it closer to the front of the lens. There are of course multiple commercial solutions available, such as the Canon MT24-EX or the Sigma EM-140 ring flash, but these are all relatively expensive and unlikely to be an option to anyone wanting to experiment with macro photography. A speedlight however is much less of a barrier to entry. A few different prototypes were made but the design I settled on was a light pipe style design that captures the flash light and funnels it down to the front of the flash. Of course, it would be ideal to hav

Macro diffuser update

I've simplified the macro diffuser that I open sourced last year . The MK1 version required printing out a custom lens hood which would only attach to a Canon 100mm macro lens. The MK2 version no longer requires a custom lens hood, it simply clicks on to the hood of whatever macro lens you might have making it far more versatile and easier to print. The tested lenses so far include: Canon 100mm  Canon 180mm Sigma 180mm Sigma 105mm This hood helps reduce harsh shadows you often get when using flash but the main advantage for me is that the head can be positioned depending on how close you get to your subject. This is the typical kind of result I'm getting with this setup now. To build your own version you just need to print the model and supply a few basic parts: M3 x 40mm Hex Head bolt (the shape of the head is hex, NOT the shape of the tool used to tighten it). M3 wingnut. Diffuser material. I use the plastic casing found on some notebooks and it seems t

The laser trigger module overview

The laser trigger module is the most useful gadget to come out of the camera trigger project so far. It is a simple board that controls up to two lasers with sensors to detect if the beams have been broken. The electronics involved in detecting a broken beam are very simple so using a microcontroller might at first glance seem to be unnecessary overkill, but using a microcontroller gives a significant amount of flexibility in a small and inexpensive package.