Loading...

tv jammer


pov display this is one of my project name :-POV display


material needed:-

  • Arduino nano (recommonded but can use any arduino)
  • ir leds
  • battery
  • switch (if needed)



instructions:-


  • first connect ir leds to arduino


    connect the Ir led to pin 13
  • _________________________________________________________________________________________

  • after fitting ir leds place the arduino near tv or setup box


  • ________________________________________________________________________________________
  • upload the code on the arduino
  • /*
      IR Jammer
      by AREEBURRUB
      Website   http://areeburrub.page.tl
     */
    int irled = 13; //set the ir led to digital pin 13
    void setup() {
    
      pinMode(irled, OUTPUT);
    }
    
    // the loop function runs over and over again forever
    void loop() {
      //just on and off the IR Signals immediately
     //it will jam the network of the remote
      digitalWrite(irled, HIGH); 
      delayMicroseconds(12);     
      digitalWrite(irled, LOW);   
      delayMicroseconds(12);   
      }
    
    
    __________________________________________________________________________________________