Transmit Infrared Signals Through Walls
or
How to turn
your IR transmitter into an RF transmitter & control stuff throughout your
house
Project update: We had no idea this was going to be so popular, so we're reducing the cost for folks to put this project together. What's changed..?
![]() |
We are now making a version of the
PIC RF-TO-IR code available to everyone for FREE. This version uses the new PIC10F200 which is
much less expensive than the original 12F675. |
![]() |
We now offer a parts kit with the main components to build this project below, (and we're tossing in many FREE components). |
I get "TONS" of requests on how to do this, so I've finally put together this simple project showing you how to use your existing infrared transmitter from any room in the house. The principal is really pretty simple, and it works better than you would think.
This is a "very handy" little project. With this gadget you can control anything from pretty much anywhere. Even place your stereo equipment inside an enclosure then use your existing IR remote control without line of sight. Adjust the volume on your stereo from other rooms in the house. You name it -- so enjoy...;o]
I have tested both circuits with TV's, stereo's, and various VCR's & CD players. I can change channels, adjust volume, etc, from any room in the house (and outside) where I have the IR to RF circuit in Figure #1. The RF to IR circuit in Figure #2 is placed on a bookshelf across our living room, and aimed in the direction of our TV & stereo.
Note: You can place the IRLED on long wires to extend it right onto the front of the equipment you need to control and do away with the Zetex 603 High-Current IRLED drive circuit. I'm a little power hungry, and always like to see just how far I can push the envelope, but you may prefer to tone this down a bit. You can directly drive the IRLED with a single series resistor on the 40kHz modulating PIC for much shorter range operation.
If you're placing the receiver & IR LED close to the equipment you'll be controlling, you do not need the high-current NPN LED driver circuit.
How It Works:
We'll use our existing infrared remote control transmitter for our TV. We'll transmit to the IR detector shown in Figure #1 below. The IR signal from our transmitter is output on the TSOP-1140 40kHz IR detector module data output pin (labeled RX DOUT) in Figure #1.
The IR detectors output signal feeds data to the input of the TXLC-434 RF transmitter module through the 2N3906 PNP transistor inverter circuit. When no data is being received from the IR transmitter, the PNP transistor & TXLC-434 RF module are both OFF.
We need this inverter circuit since the TXLC-434 data input needs to be held at ground during idle (non-transmit) periods. The output of the TSOP-1140 IR detector idles at logic 1. Applying this logic 1 directly to the TXLC-434 data input would cause the TXLC-434 RF transmitter to always be ON. We don't want this. We only want incoming data from the IR transmitter to turn ON the RF transmitter to re-create the same signal the IR transmitter is sending. That's the purpose of the PNP inverter circuit.
In essence, we're simply turning IR into RF since the IR detector output will now modulate our RF module thereby re-creating the same signal, but now it's RF instead of infrared. We use our IR transmitter to send data from any room in the house by installing the circuit shown below in Figure #1 on our TV IR transmitter, or building one of the circuits shown in Figure #1 for each room.
Figure #1: Infrared Receiver to RF Transmitter
Circuit
Now all we need is the circuit that receives the RF signal, then re-creates this same data signal in infrared. The circuit shown below in Figure #2 does exactly what we need.
Note: We've revised the RXLC-434 circuit boards. These are now 5-pin VS the old 4-pin boards. We've included a link to the older version board (and old version RF-TO-IR IC) for this project below. Anyone using the newer 5-pin modules & PIC10F200 RF-TO-IR IC, refer to Figure #2.
For The OLD Schematic click HERE
Figure #2: RF Receiver to Infrared Transmitter Circuit
How It Works:
The RXLC-434 RF receiver module receives the incoming RF transmission from the TXLC-434 transmitter. The RXLC-434 outputs this incoming data stream to the DIN pin of the 8-pin IC labeled RF-TO-IR shown above in Figure #2.
The 8-pin IC is a custom programmed PIC10F200 that samples the data input pin labeled DIN, then re-creates this same data signal modulated at 40Khz. Presto. We now have turned our incoming data back into a modulated IR signal, and we now have a standard TV or other appliance IR transmitter we can use anywhere in the house with our existing stereo, TV, CD players, etc, etc..
To assemble the code below you'll need the Microchip MPASM assembler, a PIC programmer, and, of course, a PIC10F200. If you don't have all this stuff, don't worry, we're tossing in the pre-programmed PIC free of charge with a bunch of other components for this project. See below for details.
You can download the MPASM assembler from http://www.microchip.com/ free of charge. It's included in the MPLAB IDE.
The RF-TO-IR Firmware:
;**************************************************************** ;* Name : 10F_RFTOIR.asm * ;* Author : Bruce Reynolds * ;* Notice : Copyright(C) 2005 Reynolds Electronics * ;* : All Rights Reserved * ;* Date : 08/15/2005 * ;* Version : 1.0 * ;* Notes : Using the PIC10F200 for RF to IR data carrier * ;* ; generation. * ;* : Used for RF to IR project * ;**************************************************************** title "10F200 - RF to IR Project" processor 10F200 include <P10F200.inc>We now have an order button below specifically for the parts for this project. The 8-pin RF-TO-IR IC (which we're including FREE of charge), TXLC-4324, RXLC-434, and other components. For your convenience, I have loaded the full schematics for this project on our site below, including the original version using the 4-pin RXLC-434, and newer 5-pin version RXLC-434.__CONFIG _IntRC_OSC & _WDT_OFF & _CP_OFF & _MCLRE_OFF movwf OSCCAL ; load factory osccal value at start-up bcf OSCCAL,0 ; Make sure INTOSC/4 is NOT output on GPIO.2 movlw b'00000000' ; clear outputs (IR LED = off) on power-up movwf gpio ; set port latches movlw b'00001101' ; GPIO.0, GPIO.2, GPIO.3 inputs, GPIO.1 IR LED output tris gpio ; set I/O directions movlw b'11000000' ; internal pull-ups off, wake-up on pin change off option ; write to OPTION register ; Notes on how this works: ; The output of the RXLC-434 RF receiver is held at ground until the TXLC-434 ; transmitter data input transitions from ground to logic 1. The logic 1 input ; on the TXLC-434 transmitter indicates we're receiving data from the IR transmitter ; and we need to turn the 40kHz carrier on. Simple stuff -- but most effective. Hold ; generate 40kHz carrier when GPIO.0 = 1 bcf gpio,1 ; LED = off btfss gpio,0 ; Is data input at logic 1..? goto $-1 ; No, then keep waiting Freq1 bsf gpio,1 ; Yes, so begin 40kHz IR carrier generation btfss gpio,0 ; 2uS goto Hold ; 3uS btfss gpio,0 ; 4uS goto Hold ; 5uS btfss gpio,0 ; 6uS goto Hold ; 7uS btfss gpio,0 ; 8uS goto Hold ; 9uS btfss gpio,0 ; 10uS goto Hold ; 11uS btfss gpio,0 ; 12uS goto Hold ; 13uS (~52% duty-cycle) bcf gpio,1 ; 14uS turn off IR LED here btfss gpio,0 ; 15uS goto Hold ; 16uS btfss gpio,0 ; 17uS goto Hold ; 18uS btfss gpio,0 ; 19uS goto Hold ; 20uS btfss gpio,0 ; 21uS goto Hold ; 22uS btfsc gpio,0 ; 23uS If gpio,0 = 0 end carrier, else continue goto Freq1 ; 25uS, GOTO requires 2uS, 25uS total=40kHz goto Hold ; return & wait END
![]() |
Old version HERE in Adobe .PDF format. |
![]() |
New version (with PIC10F200) HERE in Adobe .PDF format. |
Just right-click one of the links above, then select Save As to save the schematic to your PC.
Can you use other RF modules..? We get this a lot, and the answer is "absolutely", however, I recommend you use a pair that operate similar to the TXLC/RXLC RF modules. The receiver needs to maintain a solid logic 0 during idle or non-transmit periods. Many less expensive RF receivers like the RWS-434 & Ming RE-99 RF receivers will continuously output random noise pulses. These noise pulses will cause the IR modulator IC to send false data to the IR receiver on your existing equipment, so the better RF receiver modules are worth the extra cost. Test it if you like with the less expensive ones, but just remember it "definitely works" with the TXLC/RXLC combination.
Almost too simple, but you'll be really impressed with how well this works. Use the link below to grab all the parts for this project from our Remote Control Store. We have the RF modules, IRLED, IR detectors, 40kHz IR oscillator IC's, ZTX & PNP transistors, etc,,.
Until the next project -- Have fun & don't blown anything up...;o]
Order the main components for this project below.
What's included in this kit..?
![]() |
1 x TXLC-434 RF transmitter. |
![]() |
1 x RXLC-434 RF receiver |
![]() |
1 x TSOP-1140 IR receiver module (free) |
![]() |
1 x ZTX603 NPN transistor (free) |
![]() |
1 x 2N3906 PNP transistor (free) |
![]() |
1 x PIC10F200 RF-to-IR IC (free) |
![]() |
2 x IR LED's (our choice, but still free) |
Yep. You're reading it right. We're giving you all the additional components for this project for just the cost of the TXLC & RXLC RF transmitter & receiver modules.
Just dig up the resistors, caps, and a +5V regulator required to build the circuits shown above, and you're in business.
| |||
The 10F200 pre-programmed IC can be ordered separately below.
|
10F200 RF-to-IR IC $3.00 |
Regards,
-Bruce
Click HERE For
We have the majority of the parts for this project
in stock.