Arduino Uno

Header

Corner
-->

Infrared emitter

After having found this page about a "Multi Camera IR Control", I kept on looking for an IR led. I finally ended up in disassembling an old Philipps VCR remote control. Using the previously mentionned example script, I immediately was able to remotely take pictures with my Canon EOS 350D.

Schematic

infrared emitter schematic

Photo

infrared emitter photo

Sample code

In order to make this code compile without errors, you need to install the multiCameraIrControl library.

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
#include <multiCameraIrControl.h>

Canon D5(9);

void setup()
{
}

void loop()
{
  D5.shutterNow();
  delay(5000);
  D5.shutterDelayed();
  delay(5000);
}

Links

 Multi Camera IR Control