When I am searching for discrete codes I usually program 10 or 20 sequential codes into the numeric keypad of a remote, try them, and repeat. Is there a quicker way to do this? I have an IR Widget if that thing is capable of transmitting.
Thanks,
Mike
Quick way to search a bunch of codes?
Moderator: Moderators
Re: Quick way to search a bunch of codes?
Not sure what remote you have, but if you look in the files section under 'Special Protocols' there is a protocol designed exactly for this. Not sure if it has been ported to the newer remotes or not...utmba95 wrote:When I am searching for discrete codes I usually program 10 or 20 sequential codes into the numeric keypad of a remote, try them, and repeat. Is there a quicker way to do this? I have an IR Widget if that thing is capable of transmitting.
Thanks,
Mike
xnappo
The IR Widget cannot transmit. Given appropriate hardware, IRMaster can do this. See picture below. See also this thread


-
carsonlittle
- Posts: 62
- Joined: Sun Dec 02, 2012 4:14 pm
IrMaster supports GlobalCache, IrTrans, a pair of anti-parallel IR-LEDS on the auto output, and indirectly through LIRC, anything LIRC supports (and that is a lot). Note however that you need a patched version of LIRC. Which unfortunately rules out Windows (WinLirc would in principle do, if someone can can persuade the maintainer to include my patch.)carsonlittle wrote:Barf, is the GlobalCache the hardware you mention?
Not extremely easy, but probably not extremely hard either. Are you thinking of something like Arduino? (There are some threads on Arduino already.) All sources for IrMaster and dependent libraries are available at my websiteHow much extra work would it be to have IRMaster send commands to a USB connected Microcontroler (that in turn controls an IR LED) to make it behave like an IR Blaster?
-
carsonlittle
- Posts: 62
- Joined: Sun Dec 02, 2012 4:14 pm
If your software can support a pair of anti-parallel IR-LEDS, that means it can instruct a USB microcontroller what the carrier freq. should be and how to modulate that carrier freq.Barf wrote: IrMaster supports GlobalCache, IrTrans, a pair of anti-parallel IR-LEDS on the auto output, and indirectly through LIRC, anything LIRC supports (and that is a lot). Note however that you need a patched version of LIRC. Which unfortunately rules out Windows (WinLirc would in principle do, if someone can can persuade the maintainer to include my patch.)
We just need to work out the comms protocol between your software and this USB microcontroller (that I already have implemented)
Please see above - if this is not a good idea, let me know why and suggest a better one, and let's start ticking. PM me your email and we take it from there.Barf wrote: Not extremely easy, but probably not extremely hard either. Are you thinking of something like Arduino? (There are some threads on Arduino already.) All sources for IrMaster and dependent libraries are available at my websiteIf you are interesting on taking up this path, I would be happy to assist you.
Great! The clean way would be to add a new class to the HarcHardware package, API docu here, implementing the interfaces IHarcHardware and IRawIrSender. But it is not necessarily the only way to start experimenting.
My email address is found in the email button underneath my postings.
My email address is found in the email button underneath my postings.
Actually, that is not how it works, See the code in IrpMaster.Wave, or its documentation.If your software can support a pair of anti-parallel IR-LEDS, that means it can instruct a USB microcontroller what the carrier freq. should be and how to modulate that carrier freq.