Team:Cologne-Duesseldorf/Hardware

Lightboxing

This year’s hardware project dealt with creating a lightbox for optogenetic experiments, which is inexpensive to build and easy to use. Lightboxes are an important part of every lab that deals with optogenetics, due to the fact that experiments in this field require light of specific wavelengths and are very easily disrupted by background lighting. This would normally mean that the experiment would need to be conducted in a completely dark lab, which can be difficult to achieve and may render the room practically useless for other experiments. A lightbox provides a compact way of creating a suitable environment. Unfortunately, buying such a box can be expensive, as it needs to be custom-built. We wanted to create a way of supplying future iGEM teams or other research groups with a relatively easy way of constructing their own box. Since we had planned on using optogenetics in parts of our overall project, the lightbox we built also came in handy for us.

Construction of the box

Building our box requires a small amount of work with electronics, as well as a bit of programming. Below we provide a sketch of the set-up, a brief description of the overall box and then an instruction manual to building the box yourself.



Schematic view of our lightbox's 3D-printable files

Our lightbox consists of a 3D-printed casing, a circuit board with LEDs, a slot for inserting your samples, and a compartment for electronics and wiring. Our box is suited for insertion of either a well-plate or a petri dish.
Other lightboxes we looked at came in two parts: a basin for the sample and a lid with LEDs. Our tray mechanism enables construction of a more compact box and relieves stress on wires.

LEDs

We used three different wavelengths for our box: 460 nm (blue), 660 nm (red), and 780 nm (far-red). These cover the domains of frequently used optogenetic switches, such as LOV2, Phytochrome B or Cryptochrome. In theory, the box’s repertoire of wavelengths can be quite variable. We got our LEDs and constant current sources from Led-tech . To control our box, we used a micropython, which functions much like an Arduino but is programmable via Python. Depending on one’s preference, an Arduino or Raspberry Pi could also be used here. The power source may be anything providing a voltage of at least 12V. In fact, we used old computer power supply; recycling can be a great thing!
An important aspect we wanted to include in our construction work is the use of 3D printers. These are a growing tool which provides people with the opportunity to create objects in silico and then make them in real life. While not absolutely necessary to build our box, having access to a 3D-printer will certainly help.

Construction of the box

Instruction manual


You will need:

  1. 1 Circuit board (150mm x 100mm)
  2. 1 microcontroller (micropython, Arduino or Raspberry Pi)
  3. 3 constant current power supplies
  4. 3 blue LEDs
  5. 3 red LEDs
  6. 3 red LEDs
  7. 3 far-red LEDs
  8. Heat-conducting pads
  9. Soldering iron
  10. Solder
  11. Wire
  12. A 3D-printer or something similar
  13. A power supply that can provide a voltage of 12V (the easiest thing to use is an old computer power supply: you need the yellow(12V), red(5V) and black(neutral) wires; BE CAREFUL TO ALWAYS GROUND YOUR POWER SUPPLY AND DO NOT LEAVE ANY UNCONNECTED WIRES LYING AROUND)

1). Print or fabricate the casing

i)


We have provided 3D-printable files for our version of the lightbox. If you don’t have a printer at your university you might find places near you which offer 3D-printing services.

2). Assemble circuit board for LEDs

i)


Attach the LEDs to the circuit board using the heat conductive pads, for example like so:

ii)


Connect LEDs of same color using wire and the soldering iron.

iii)


Make sure that you have wires connected to the overall + and - poles of each wavelength. These will later be attached to the power source.

3.) Connect power source

Connect your 12V power supply to the input sides of the constant current supplies. It is possible to use one 12V cable for all 3, as long as you split it in a safe way (for example using clamps).


4.) Connect microcontroller

The constant current sources each contain a pwm-input pin. These can be thought of as on/off switches: if a voltage is applied to the pin, it stops current from flowing through the LEDs, thereby turning them off. Otherwise the LEDs shine unimpeded. This property can be used for controlling the lightbox.Using wires, connect your microcontroller to the pins according to the following scheme:

Modified from Micropython.org.

Programming the lightbox

Once the hardware is assembled, you need to be able to control your lightbox. This is done via the aforementioned microcontroller. It is responsible for regulating the intensity of the LEDs via a process called pulse width modulation (PWM), as well as the time of illumination. Below we have provided the code needed for the most basic control.

      
import machine
import time
import pyb
import math


# create I/O pins in output mode
o1 = pyb.Pin('Y1', pyb.Pin.OUT)
o2 = pyb.Pin('Y2', pyb.Pin.OUT)
o3 = pyb.Pin('Y3', pyb.Pin.OUT)



# Control LEDs
o4.high()
o5.high()
o6.high()
     

What this program does is activate the pins Y1, Y2 and Y3. This leads to switching-off of each constant current source. So in this configuration, all LEDs are switched off. If you set a pin to 'LOW' via the command "o1.low()", the corresponding LEDs will light up. This way you can choose the wavelength for your experiment!