Infrared LEDs

Infrared LEDs are light-emitting diodes that only emit light in the infrared spectrum. They are not visible to the human eye, but they are visible to a phone camera - especially if its an old phone without an IR filter (because that was a problem which we encountered)!


They way in which the IR Leds work in order for the sensors to pick them up, is that they have to modulate at two different frequencies. One frequency is the carrier frequency, for the TSOP4038 its 38kHz, and the sensor will not pick up any data unless the sensor is modulating at that carrier frequency. Once it is, the sensor will pick up other data, which is transfered in the form of another frquency.


So, the task for the IR led was to modulate something like the second figure on the right. The signal has to modulate at two frequency, one which is shorter and one which is longer. The signal is off and modulating at the second frequency for equal amounts of time.


At first, we didn't know all of this and we then tried shining the IR leds with no modulation onto the sensor and got no response. We had to go back and read up on what an IR sensor actually detects at this point. Next, we used the instructions from Zovirl Industries as a base, and modified the code to our needs.


There was a time when the leds stopped turning on, and we had thought that the leds were drawing too much power or that they weren't communicating with the arduino anymore. It turns out, that the leds were getting short circuited because the IR sensors were slightly exposed (not completely covered with heat shrink) and short circuiting themselves.


In the meantime while we were debugging why the IR leds kept short-circuiting we created new code to modulate the LEDs, this time, we went about it correctly. By this, I mean understanding what the IR LEDs needed to be doing and constructing our own code to do so. In this code, we turn the voltage on and off for the carrier frequency, using the millis and the inverse of the frequency (period). Then, when the voltage is on, a boolean constant is set to True, and we digitalWrite the voltage to modulate at the second frequency.


In the end, the IR LEDs were able to be picked up by our robot's sensors, and we learned many cool, unexpected things along the way!

IR light in Light Spectrum

It's just out of the range of vision

Diagram of IR Modulation

A visual we made of the two frequencies modulating.

A Video of IR "Shoot" in Action

The "shoot" or "fire" command is sent to one robot, causing it to send an IR LED pulse. The other robot is connected to the computer's serial plotter, so when it receives the IR shot from the other robot, a visible spike appears.