20

I have an app that controls an IR emitter and would like to get access to the universe of IR codes. Is this something that is freely available, or is it a subscription?

(Companies like harmony and logitech have them - just not sure how I get access to it)

(google did not give me anything useful so far)

NOTE - to be clear - I want a list of devices like TVs, DVD players, etc - like the ones that are printed with universal remotes or ones that are downloaded. However, I want the actual specifications so I can control the IR diode(s).

Simon Richter
  • 28,572
  • 1
  • 42
  • 64
Tim
  • 20,184
  • 24
  • 117
  • 214
  • 2
    Did you ever find a solution to this? Im crossing this bridge now and these answers are not very good! – tyler Aug 25 '13 at 20:30
  • No - sorry, nver found one. I think maybe the best option is to add that into the UI somehow so people can upload the codes themselved (like the old CDDB kind of thing) – Tim Aug 26 '13 at 03:15

5 Answers5

12

LIRC has a repository of remote controller codes where you can find the codes for various manufacturers of infrared remotes.

Pankrat
  • 5,206
  • 4
  • 31
  • 37
  • that's good. I just wish it was a little more usable - ideally I would like to have device models, not remote control models, but this is good I think if I can interpret the hex codes. – Tim Apr 07 '09 at 21:08
  • Direct download [link](http://sourceforge.net/p/lirc-remotes/code/ci/master/tree/). – Dhaval Patel Nov 24 '15 at 05:08
2

Can use the Megalist in the following link:

http://www.commandfusion.com/wiki2/software/ir-learner/megalist-ir-database

pedro.olimpio
  • 1,478
  • 2
  • 22
  • 43
2

irdb.tk contains IR codes for the devices I was looking for. I used the values given in the Pronto IR format.

Luke Moore
  • 685
  • 5
  • 7
2

Something like this? If the page doesn't load, view the source for other links. For example, here's the Sony protocol.

eduffy
  • 39,140
  • 13
  • 95
  • 92
-1

For using a raw LED I'd hook a photodiode or phototransistor to an oscilloscope so you can see what's being sent. I was under the impression that the pulses are serial ascii data, no idea about stuff like baud rate. Then use a PIC https://en.wikipedia.org/wiki/PIC_microcontrollers or Atmel in a little box with an LED and battery. Or build it into your favorite armchair.

Alan Corey
  • 577
  • 6
  • 10