No one-way approach to learning ir remote control frequencies


Closed Thread
Page 1 of 2 12 LastLast
Results 1 to 40 of 42
  1. #1
    Join Date
    Aug 2006
    Location
    In a world of german electrons
    Posts
    102

    Default No one-way approach to learning ir remote control frequencies

    I want to control my circuitry via a given infrared remote control
    (for a Scott DVD-Player) producing unknown control frequencies.

    All approaches I have seen so far need extra circuitry and output the
    data to the pc showing it perfectly. But these are one-way
    circuitries. Having found out the frequences, they are useless.

    I want to get the frequencies via software and write them to the
    eeprom to read them out on the pc and use them in the future.

    I created a circuitry that sets PORTA.5(PIC = 16F628A) High or low depending on the
    rc's ir-led being on or off.

    Now I need software to cope with this information and to write it to
    my pic. As I mentioned, I don't know the carrier frequency nor do I
    know any other data about the control except that it produces light
    and my circuitry receives it.

    Suggestions ?
    Last edited by selbstdual; - 13th June 2007 at 08:51.

  2. #2
    Join Date
    Dec 2005
    Posts
    1,073


    Did you find this post helpful? Yes | No

    Default

    I'm not sure, from your post, what you are trying to accomplish.

    If you need to know the carrier frequency of the IR you can record an image of it using a PC parallel port and then determine the carrier frequency from the recorded data. See http://www.ziplabel.com/cir/index.html for schematics and software.

    You can also check the files at http://www.RemoteCentral.com for your specific remote or the hardware it was designed for. If it's listed, you can get the carrier frequency from the CCF files there.

    Once you have the carrier frequency and the timings for the IR bursts, you can use HPWM to create the carrier, switching the pin from output to input to turn the bursts on or off.

    You will likely find the current from a PIC pin insufficient to drive an IR emitter for anything other than close range. Check http://www.rentron.com for IR project schematics.
    Last edited by dhouston; - 13th June 2007 at 12:21.

  3. #3
    Join Date
    Aug 2006
    Location
    In a world of german electrons
    Posts
    102


    Did you find this post helpful? Yes | No

    Default

    Thank you for your answer.

    I'm not sure, from your post, what you are trying to accomplish.
    I want to know:
    a) the carrier frequency of the given remote control
    b) which buttons result in which combinations of bursts

    I want software in pbp to answer these questions.

    Only thing offered is PORTA.5 which can be asked for its status to find out about a high or low level(light or dark).

    If you need to know the carrier frequency of the IR you can record an image of it using a PC parallel port and then determine the carrier frequency from the recorded data.
    For this issue I wrote this:
    All approaches I have seen so far need extra circuitry and output the
    data to the pc showing it perfectly. But these are one-way
    circuitries. Having found out the frequences, they are useless.
    You can also check the files at http://www.RemoteCentral.com for your specific remote or the hardware it was designed for.
    It doesn't exist there.

    Once you have the carrier frequency and the timings for the IR bursts, you can use HPWM to create the carrier, switching the pin from output to input to turn the bursts on or off.
    It is about receiving, not sending.
    Last edited by selbstdual; - 13th June 2007 at 14:51.

  4. #4
    Join Date
    Dec 2005
    Posts
    1,073


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by selbstdual View Post
    It doesn't exist there.
    There is a file there for a Scott DVD player. If they make other models there is still a good chance that they use the same carrier and codes.

    Since you apparently want someone to hand it to you on a plate, try http://www.rentron.com/PicBasic/IR_Chips.htm

  5. #5
    Join Date
    Dec 2005
    Posts
    1,073


    Did you find this post helpful? Yes | No

    Default

    I still really do not understand exactly what you want to do but, from a quick look at some of your other posts, that seems to be an ongoing theme.

    The Scott DVD Player uses the NEC IR protocol with a carrier of 38kHz. Scott's custom code is 8. The NEC protocol is one of the oldest (if not the oldest) IR protocol. It is widely used by many AV manufacturers and is easily understood. There's a datasheet for one of the early NEC encoder chips on my webpage at http://davehouston.net/Nec6121.pdf.

    If you want to capture these codes with a PIC, the best way is to use an IR receiver module which receives the IR, removes the carrier, and outputs the data envelope. I suggest the Vishay TSOP1100 which works with 33-57kHz carriers. If you also want to capture the carrier frequency use a photodiode on another pin and, if your oscillator is at least 8MHz, use PBP's COUNT for 1mS during the initial IR burst which is usually 2.5mS or longer with almost all protocols. The initial burst is about 9mS with the NEC protocol.

    As it happens, I've posted code to send/receive, encode/decode the NEC protocol as RF. The only difference for receiving is the polarity - the IR receiver is active low where an RF receiver is active high. For sending, modify my RF code with Bruce Reynold's IR code which I cited earlier. You can even leave it at 40kHz but you'll need to use the NEC timing in my code. See http://www.picbasic.co.uk/forum/showthread.php?t=6261.

  6. #6
    skimask's Avatar
    skimask Guest


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by selbstdual View Post
    I want to know:
    Apparently everything...right...DUDE?

    I want software in pbp to answer these questions.
    Of course you do! As usual...





    Quote Originally Posted by dhouston View Post
    Since you apparently want someone to hand it to you on a plate, try http://www.rentron.com/PicBasic/IR_Chips.htm
    Quote Originally Posted by dhouston View Post
    .....but, from a quick look at some of your other posts, that seems to be an ongoing theme.
    I don't think the plate is good enough. Hand delivered, built, tested, debugged, and put in a shiny gold enclosure...maybe...

  7. #7
    Join Date
    Aug 2006
    Location
    In a world of german electrons
    Posts
    102


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by dhouston View Post
    I still really do not understand exactly what
    you want to do but, from a quick look at some of your other posts,
    that seems to be an ongoing theme.
    I did not notice this sentence.

    Quote Originally Posted by dhouston View Post
    The Scott DVD Player uses the NEC IR protocol
    with a carrier of 38kHz. Scott's custom code is 8. The NEC protocol
    is one of the oldest (if not the oldest) IR protocol. It is widely
    used by many AV manufacturers and is easily understood. There's a
    datasheet for one of the early NEC encoder chips on my webpage at
    http://davehouston.net/Nec6121.pdf.
    Interesting that no technical manual can be written for a good
    understanding. Thank you anyway.

    Quote Originally Posted by dhouston View Post
    If you want to capture these codes with a PIC,
    the best way is to use an IR receiver module which receives the IR,
    removes the carrier, and outputs the data envelope. I suggest the
    Vishay TSOP1100 which works with 33-57kHz carriers. If you also want
    to capture the carrier frequency use a photodiode on another pin and,
    if your oscillator is at least 8MHz, use PBP's COUNT for 1mS during
    the initial IR burst which is usually 2.5mS or longer with almost all
    protocols. The initial burst is about 9mS with the NEC protocol. As it
    happens, I've posted code to send/receive, encode/decode the NEC
    protocol as RF. The only difference for receiving is the polarity -
    the IR receiver is active low where an RF receiver is active high. For
    sending, modify my RF code with Bruce Reynold's IR code which I cited
    earlier. You can even leave it at 40kHz but you'll need to use the NEC
    timing in my code. See
    http://www.picbasic.co.uk/forum/showthread.php?t=6261.
    Let us see.

  8. #8
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    3,806


    Did you find this post helpful? Yes | No

    Default

    I like the self-adjustment of this forum! Only if I ould do such a self-adjusted circuits!

    Ioannis

  9. #9
    Join Date
    Aug 2006
    Location
    In a world of german electrons
    Posts
    102


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Ioannis View Post
    I like the self-adjustment of this forum! Only if I ould do such a self-adjusted circuits!

    Ioannis
    I don't understand you. Does your text support my question in a way ?
    Last edited by selbstdual; - 14th June 2007 at 09:22.

  10. #10
    Join Date
    May 2004
    Location
    NW France
    Posts
    3,614


    Did you find this post helpful? Yes | No

    Talking is it only a Translation problem ...

    Hi, Selbst

    Could you confirm your very approximate English translation of " Ich wünche " or " Ich Möchte " is " I want " ...

    ... " I'd like " is much, much, much closer and could bring you back much,much,much useful answers ...


    But ...may be I'm wrong ...

    Alain

    " Ich bin ( auch ) ein Berliner ... "
    ************************************************** ***********************
    Why insist on using 32 Bits when you're not even able to deal with the first 8 ones ??? ehhhhhh ...
    ************************************************** ***********************
    IF there is the word "Problem" in your question ...
    certainly the answer is " RTFM " or " RTFDataSheet " !!!
    *****************************************

  11. #11
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    3,806


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Ioannis View Post
    Originally Posted by Ioannis
    I like the self-adjustment of this forum! Only if I ould do such a self-adjusted circuits!

    Ioannis
    No. It is a notice to skimask.

    Ioannis
    Last edited by Ioannis; - 14th June 2007 at 09:32.

  12. #12
    Join Date
    Aug 2006
    Location
    In a world of german electrons
    Posts
    102


    Did you find this post helpful? Yes | No

    Smile

    I decided to say it the way I did And Acetronics, I am waiting for the nazi-comparison impatiently. Do it, let it out.

    No. It is a notice to skimask.
    He/she has already been on my ignore list. I don't know why but I guess he/she proved in the past that his/her comments need noone to watch them.

    Your post, Ioannis, didn't help either.

    Speaking of comments:

    Thanks to dhouston for his effort.
    Last edited by selbstdual; - 14th June 2007 at 11:55.
    Be well - whoever you are.

  13. #13
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    3,806


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by selbstdual View Post
    Your post, Ioannis, didn't help either.
    Ohh, come on, a little humor is always welcome. Don't take everything so seriously!

    After all the comments of Dave were sharp enough although the hints that gave you.

    By the way, if you use a photodiode (not something like TSOPxxx) you may be able to use the PIC timer and find real time the carrier of any IR control.

    An opamp should be used to convert Current to Voltage and feed it to a PIC port like a square wave signal. If you need more on this, ask for it.

    Ioannis

  14. #14
    Join Date
    Dec 2005
    Posts
    1,073


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by selbstdual View Post
    Interesting that no technical manual can be written for a good
    understanding.
    While this is written about how ProntoEdit displays IR codes, it gives a good explanation of both one Sony and the NEC protocols.
    http://www.remotecentral.com/features/irdisp1.htm

    This gives brief descriptions of 4 popular protocols. http://www.celadon.com/infrared_prot...ls_samples.pdf

    This is probably the best one as it includes PIC (ASM) code. http://www.sbprojects.com/knowledge/ir/ir.htm
    Last edited by dhouston; - 14th June 2007 at 21:20. Reason: Added a URL to IR Tutorial.

  15. #15
    Join Date
    May 2004
    Location
    NW France
    Posts
    3,614


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by selbstdual View Post

    I decided to say it the way I did And Acetronics, I am waiting for the nazi-comparison impatiently. Do it, let it out.

    .
    Really sorry to deceive ...

    A little Out of Pics Subject ...

    When I was in Berlin (1980 ... the "wall" was still here ) I talked GENTLY with the mecanicians I worked with ...

    About Nazis and the 2nd WW , I got this terrible answer :

    "We believed in it ..., really trusted in. "

    And I believed them,

    The problem of being a Nazi or similar ( football Hooligans i.e.? ) is low people problem: have to invent ennemies to feel they exist ...


    Fighting is so much easier than listening to others ... and possibly respect them !!!

    Have a nice evening ...

    Alain
    ************************************************** ***********************
    Why insist on using 32 Bits when you're not even able to deal with the first 8 ones ??? ehhhhhh ...
    ************************************************** ***********************
    IF there is the word "Problem" in your question ...
    certainly the answer is " RTFM " or " RTFDataSheet " !!!
    *****************************************

  16. #16
    skimask's Avatar
    skimask Guest


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by selbstdual View Post
    He/she has already been on my ignore list. I don't know why but I guess he/she proved in the past that his/her comments need noone to watch them.
    Then you're missing out...

  17. #17
    skimask's Avatar
    skimask Guest


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Ioannis View Post
    I like the self-adjustment of this forum! Only if I ould do such a self-adjusted circuits!
    Ioannis
    Quote Originally Posted by Ioannis View Post
    No. It is a notice to skimask.
    Ioannis
    I don't get it either...

  18. #18
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    From what i feel and observe, i might bet on few things.

    Self adjustment:
    1. The ability to find and suggest everyone the ultimate solution that couldn't be contradicted.
    2. The ability of raising a self esteem in a such way that someone is known as the best even if not.
    3. Having the attitude to make people feel cheap and dumb because they don't know what they do, but yeah refer them to the RTFM %^&%* thingy
    4. all of the above
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  19. #19
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    3,806


    Did you find this post helpful? Yes | No

    Default

    Mainly the 4th!

  20. #20
    Join Date
    Aug 2006
    Location
    In a world of german electrons
    Posts
    102


    Did you find this post helpful? Yes | No

    Default

    May restriction help people to improve their lifes.

    Quote Originally Posted by dhouston View Post
    There is a file there for a Scott DVD player. If they make other models there is still a good chance that they use the same carrier and codes.
    I found a lot of Scott as a person's name but no result for "scott dvd player" or even scott "dvd player". Where did you find the file ?

    Scott's custom code is 8.
    What do you mean by this ?
    Last edited by selbstdual; - 15th June 2007 at 11:36.
    Be well - whoever you are.

  21. #21
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    Scott is indeed a brand name. We saw them often here before. They had bad reputation so far for all of their product (TV, VCR and so on). Maybe they have another label here now

    http://www.ciao.co.uk/DVD_Players_5266534_3-scott
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  22. #22
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    3,806


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by skimask View Post
    I don't get it either...
    Well, at the University there was a class about Information - Society (mainly about the social consequences of IT in the evolution of the societies etc).

    Convergence of technologies and Self-adjustment are the terms widely used there. Self - adjustment has to do with the ability to "repair" a bad situation without the intervention of the respective authority.

    Authority here reads Admin...

    Ioannnis

  23. #23
    Join Date
    Dec 2005
    Posts
    1,073


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by selbstdual View Post
    I found a lot of Scott as a person's name but no result for "scott dvd player" or even scott "dvd player". Where did you find the file ?
    On the RemoteCentral web site, in the Files section, under Philips Pronto & ProntoPro Classic, Component Configuration Files, Scott, DVD Players. You will need ProntoEdit (also available on the site) to view the files and see the IR codes.
    What do you mean by this ?
    Read the NEC datasheet I cited near the beginning of this thread.

    If you don't want to take the time to learn the rudiments of ProntoEdit, then read the NEC data sheet and capture the codes using the simple hardware shown at http://davehouston.net/learn.htm. NEC codes are very easy to decode once you've bothered to read the datasheet.

    I'm afraid my patience and helpfulness has come to an end.

    The attached GIFs show the code sent by the "1" button as taken from the earlier cited CCF file.
    Attached Images Attached Images   
    Last edited by dhouston; - 15th June 2007 at 15:54.

  24. #24
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    <table><td></td><td>Nice tutorial Dave!</td></table>
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  25. #25
    skimask's Avatar
    skimask Guest


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Ioannis View Post
    Well, at the University there was a class about Information - Society (mainly about the social consequences of IT in the evolution of the societies etc). Convergence of technologies and Self-adjustment are the terms widely used there. Self - adjustment has to do with the ability to "repair" a bad situation without the intervention of the respective authority. Authority here reads Admin...
    Ioannnis
    Do you mean 'taking care of business' ?

  26. #26
    Join Date
    Jul 2003
    Posts
    2,358


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Ioannis View Post
    Self - adjustment has to do with the ability to "repair" a bad situation without the intervention of the respective authority... Authority here reads Admin... Ioannnis
    I think the rest of us might refer to this as "Damage Limitation".

  27. #27
    Join Date
    Aug 2006
    Location
    Look, behind you.
    Posts
    2,818


    Did you find this post helpful? Yes | No

    Default ????????????????????

    Hello,
    #1. Way to go Dave, I bookmarked your Tutorial for further study, Thanks !
    #2. So all this banter is about not getting spanked? Just cause a dog growles,
    dosen't mean he doesn't like you, it just means he's a dog !
    #3. To quote an infamous American Sociologist " Can't we all just get along" ?
    Welcome to Los Angeles, where we will treat you like a KING !
    If you do not believe in MAGIC, Consider how currency has value simply by printing it, and is then traded for real assets.
    .
    Gold is the money of kings, silver is the money of gentlemen, barter is the money of peasants - but debt is the money of slaves
    .
    There simply is no "Happy Spam" If you do it you will disappear from this forum.

  28. #28
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    3,806


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Joe S. View Post
    Welcome to Los Angeles, where we will treat you like a KING !
    I am sure you will!!!

    Ioannis

    To Melanie: Yeap, that too!
    To Skimask: You could say that too!

  29. #29
    Join Date
    Aug 2006
    Location
    In a world of german electrons
    Posts
    102


    Did you find this post helpful? Yes | No

    Default

    I converted the signal to a wave file. Now it looks like the one attached. Is there a software being able to filter out the high and low periods available ?
    Attached Images Attached Images  
    Be well - whoever you are.

  30. #30
    Join Date
    Dec 2005
    Posts
    1,073


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by selbstdual View Post
    Is there a software being able to filter out the high and low periods available ?
    Yes and no. I have software I wrote a few years ago that can convert between .WAV, .CCF, .LIR and a few other IR formats as well as allow for graphic editing but it's not available to others. If you attach your .WAV file, I'll convert it to CCF or RAW (just the durations of pulses/spaces).

    BTW, this looks more like a Sony 12-bit protocol than NEC but it's hard to say as the horizontal scale is too small. If it is Sony, it's explained here...
    Last edited by dhouston; - 19th June 2007 at 14:21.

  31. #31
    Join Date
    Aug 2006
    Location
    In a world of german electrons
    Posts
    102


    Did you find this post helpful? Yes | No

    Default

    Here are all codes of three remote controls.

    Each last one is the last button being pressed without being released immediately afterwards.

    Part I. Please rename all .zip to .rar
    Attached Files Attached Files
    Last edited by selbstdual; - 19th June 2007 at 22:12.
    Be well - whoever you are.

  32. #32
    Join Date
    Aug 2006
    Location
    In a world of german electrons
    Posts
    102


    Did you find this post helpful? Yes | No

    Default Part II

    Here's the second part. Thank you for your offer.
    Attached Files Attached Files
    Last edited by selbstdual; - 19th June 2007 at 22:28.
    Be well - whoever you are.

  33. #33
    Join Date
    Dec 2005
    Posts
    1,073


    Did you find this post helpful? Yes | No

    Default

    I downloaded three of your files and could open none, getting a message that they were corrupted.

    Besides, I offered to convert one, from one remote - not several from multiple remotes.

    The one you attached the GIF of is likely a Sony 12-bit Device 01: Command 00.
    Attached Images Attached Images  

  34. #34
    skimask's Avatar
    skimask Guest


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by dhouston View Post
    I downloaded three of your files and could open none, getting a message that they were corrupted.
    I think those multiple zip files are actually one huge zip file split up so it can be uploaded here. And I think somehow, you got suckered into figuring out which program he used to split them, and he expects you to put them back together and do the hard work...

  35. #35
    Join Date
    Aug 2006
    Location
    In a world of german electrons
    Posts
    102


    Did you find this post helpful? Yes | No

    Default

    1. It is a splitted archive, you need all 9 files.
    2. Rename all .zip to .rar.
    3. Use the newest winrar version to open the first file.
    4. Extract it. You get three 48 kHz, 16Bit, mono PCM wave-files.
    5. Please use all three files in one go with your program.

    Quote Originally Posted by dhouston View Post
    The one you attached the GIF of is likely a Sony 12-bit Device 01: Command 00.
    It is the left-, and topmost button of the sony RM-889 whose complete code is included in the archive.
    Last edited by selbstdual; - 20th June 2007 at 09:12.
    Be well - whoever you are.

  36. #36
    Join Date
    Aug 2006
    Location
    In a world of german electrons
    Posts
    102


    Did you find this post helpful? Yes | No

    Default

    Am I to see your promises as unfounded, dhouston ?
    Be well - whoever you are.

  37. #37
    Join Date
    Dec 2005
    Posts
    1,073


    Did you find this post helpful? Yes | No

    Default

    Promises? I offered to convert ONE code from ONE remote - the one for which you uploaded a GIF - I gave you the results for it - Sony 12-bit, Device 01: Command 00. You posted many codes from three different remotes. You've been given more than enough information to accomplish what you indicated you wanted at the beginning of the thread - to capture codes from your Scott remote. You will get no further assistance from me but will have the honor of being the first person to make my Ignore List.

  38. #38
    Join Date
    Aug 2006
    Location
    In a world of german electrons
    Posts
    102


    Did you find this post helpful? Yes | No

    Default

    You fall short of your pledge.
    I am glad to have noticed this fact early enough to not start a business relationship with you
    in a few years.

    Be well.
    Be well - whoever you are.

  39. #39
    Join Date
    May 2004
    Location
    NW France
    Posts
    3,614


    Did you find this post helpful? Yes | No

    Talking

    Quote Originally Posted by selbstdual View Post
    You fall short of your pledge.
    I am glad to have noticed this fact early enough to not start a business relationship with you
    in a few years.

    Be well.

    Looks you LIE ... just a bit !!

    <<

    Age: 65
    Biography: I love microchips
    Location: In a world of electrons
    Interests: fishing, ****ing my wife, playing with children, hunting
    Occupation: tax inspector

    >>

    This is an Excerpt from your official profile ... YOU wrote it !

    or is it one more translation error ???

    Have a nice day ...

    Alain
    ************************************************** ***********************
    Why insist on using 32 Bits when you're not even able to deal with the first 8 ones ??? ehhhhhh ...
    ************************************************** ***********************
    IF there is the word "Problem" in your question ...
    certainly the answer is " RTFM " or " RTFDataSheet " !!!
    *****************************************

  40. #40
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    3,806


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Acetronics View Post
    Age: 65
    Biography: I love microchips
    Location: In a world of electrons
    Interests: fishing, ****ing my wife, playing with children, hunting
    Occupation: tax inspector

    Hmm, the ****ing my wife, stands for:

    1. Hanging my wife? or
    2. Dusting my wife? or
    3. Serving my wife?

    And the occupation, is really interesting!

Similar Threads

  1. Replies: 17
    Last Post: - 12th April 2014, 02:17
  2. IR Remote Control Issues
    By Kamikaze47 in forum mel PIC BASIC Pro
    Replies: 20
    Last Post: - 28th August 2007, 14:12
  3. Remote control with frequencies
    By tohu thomson in forum mel PIC BASIC
    Replies: 2
    Last Post: - 15th August 2007, 15:15
  4. IR Remote Control
    By mychangl in forum mel PIC BASIC Pro
    Replies: 2
    Last Post: - 25th March 2007, 07:01
  5. Need help building a simple IR learning remote with a PIC
    By JackPollack in forum mel PIC BASIC Pro
    Replies: 14
    Last Post: - 20th April 2006, 22:22

Members who have read this thread : 1

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts