From: Harvie Date: Mon, 24 May 2010 18:03:05 +0000 (+0200) Subject: Added Arduino IR Jammer X-Git-Url: http://git.harvie.cz/?a=commitdiff_plain;h=cad05b18f95de8f5e962e467de9c432722da1df7;p=mirrors%2FPrograms.git Added Arduino IR Jammer --- diff --git a/arduino/IR_Jammer.pde b/arduino/IR_Jammer.pde new file mode 100644 index 0000000..ad96955 --- /dev/null +++ b/arduino/IR_Jammer.pde @@ -0,0 +1,35 @@ +/* + * Arduino IR-Jammer + * <~~Harvie 2oo8 + * + * You can look for couple of old TV remote controlls + * to extract some IR LEDs... + * + * Each TV should have LED of specific "color" + * (even you can't see it). So its better to connect + * more LEDs with different light frequency (color). + * Specialy if jammer is working only from small distance. + * + */ + +#define ledpin 13 +//Maybe you will have to experiment also with this value +int bitlen = 5; +int d, i; + +void setup() { + pinMode(ledpin, OUTPUT); +} + +void loop() { + for(d=1000/100;d<=1000/20;d++) { // 1000/frequency in kHz + //You maybe have to experiment with ^^^ this ^^^ values + //Frequency sweeping: 100->20 kHz works, i saw 60->1 too + for(i=0;i