urbanij / IR-remote-Canon

Firmware for a Canon DSLR IR remote loaded on an Arduino and an Atmel microcontroller
MIT License
11 stars 2 forks source link

Hexadecimal code #1

Open lossurdo opened 6 years ago

lossurdo commented 6 years ago

Great job! It works perfectly!

Do you know if you can communicate with IR using the IRremote library? For this, I would need the corresponding hexadecimal code.

So I could call it this way:

   for (int i = 0; i <3; i ++) {
     irsend.sendLG (0x20DFC03F, 32); 
     delay (40);
   }

Lib example: https://www.pjrc.com/teensy/td_libs_IRremote.html

Thanks!

urbanij commented 6 years ago

Hi, thanks for checking this out. I actually haven't tried that, sorry. I just went straight from the protocol to the actual pulses.