Introduction: TV Remote Jammer
This is an Arduino controlled TV Remote jammer that comprises of an IR led that sends continuous impulses to the TV receiver. The TV receiver does not recognize the pulse and gets jammed.
Here are some cool jammers to check out if you wanna buy one.
Step 1: Gathering the Materials....
Here is the list of material that you need:
1.Sparkfun Arduino MINI pro
2.9v battery
3.9v battery clip
4.A small switch
5.A small box(optional)
6.Some jumper wires
Step 2: Arduino MINI Programming
We are going to use Arduino Uno to program our SPARKFUN arduino mini,the wiring can be seen in the image above.Go to the tools menu than click on the board and select "Arduino mini or mini pro",then select the port and then upload the program.REMOVE THE ARDUINO UNO'S IC BEFORE PROGRAMMING.
Step 3: The Arduino Program...
Copy paste the following program on Arduino IDE,
// TV REMOTE JAMMER
//This is a Daniyal Shamsi program in which an ir led is placed
//on pin 12 and is kept near tv,and it blocks the tv remote signals...
int irled = 12;
void setup() { pinMode(irled, OUTPUT);
}
void loop() {
digitalWrite(irled, HIGH);
delayMicroseconds(12);
digitalWrite(irled, LOW);
delayMicroseconds(12);
}
Step 4: Putting All Together...
Follow the schematic as shown in the picture....
Step 5: HOW TO USE...
Keep the reamote jammer near the tv(or hide it around,I suggest),switch it on and test it out,fool around people in your house.......
Step 6: A STEP OF THOUGHT...
Firstly tried my hands on using Infrared technology,I was successful at my first shot,hope you liked this little Instructable,if so PLEASE VOTE OF ME,thanks to Instructables for creating this wonderful website,a special thanks to SPARKFUN for creating wonderful boards.So if you liked it pleeease throw a vote for me.......

Participated in the
Beyond the Comfort Zone Contest

Participated in the
Automation Contest 2016
30 Comments
Question 1 year ago
Shouldn't the IR LED have some value resistor, to limit the current? Would a 220 ohm work?
Answer 1 year ago
hey, I think it would just fine without the resistor as well, since the digital pins emit a low current themselves but I think a 220 ohm should do no harm as well!
4 years ago
This is cool.
More compact than the usual 555 timer design.
Reply 4 years ago
Thanks man!!..The mai reason behind making that was to reduce the 555 complexity and increase compactness(and trouble my sister)!
5 years ago
Would it work, if the IR was constantly on, and not blinking? Why or why not?
Reply 5 years ago
Great question....,The tv reciever works on the pulses given by the ir remote to perform some action and if the ir led is continuosly on the it might not get a pulse and may ignore it and may catch some other pulse offered by any other remote..The trick is to send an invalid continuos pulse so that it may get engaged in it and get jammed....Sorry for the late reply....
5 years ago
how it cab be used on cell phone ?
Reply 5 years ago
means???,sorry I didn't get you
6 years ago
Where do i get the circuet board used for this? Please??
Reply 6 years ago
The arduino mini can be easily found on eBay...
6 years ago
Would be a lot of fun in a bar during Stanley Cup season. Use your phone to switch the channels on the bar TVs and then turn this on to stop anyone from changing the channel back!
Reply 6 years ago
Great idea,will use that!!!!
6 years ago
Thx for reply. Just one question what does that device do how you fool people with that??
Reply 6 years ago
it blocks the TV remote signals,but which the remote stops to work,and people thing that they are having fault in the remote...
Reply 6 years ago
it makes the TV remote not work.
Reply 6 years ago
it blocks the signal sent by the TV remote and people think,there is some fault in the remote....
6 years ago
Cool, I really wanna make it but I dont have a arduino :(
When I get the materials, I'll enjoy making fun of my dad and my brother XD
Reply 6 years ago
you can make it using a 555 also,may I send you the diagram....
6 years ago
awesome i made one of these in high school but we did it the hard way. However a cool tip is if you want too check if your circuit is working then simply point a digital camera or smartphone camera at the diode. While infrared is normally invisible with a digital camera you will see the diode pulsing.
Reply 6 years ago
yup,you said that right..