0% found this document useful (0 votes)
87 views5 pages

Phone Controlled Signal Jammer

The document describes how to build a phone controlled signal jammer using an Arduino, RF module, Bluetooth module and an Android phone. It provides instructions on connecting the components and programming the Arduino and Android app to allow remote switching of the jammer from a phone.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
87 views5 pages

Phone Controlled Signal Jammer

The document describes how to build a phone controlled signal jammer using an Arduino, RF module, Bluetooth module and an Android phone. It provides instructions on connecting the components and programming the Arduino and Android app to allow remote switching of the jammer from a phone.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

technology workshop craft home food play outside costumes

phone controlled signal jammer


by REGATTE on November 12, 2016

Table of Contents

phone controlled signal jammer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1

Intro: Phone controlled signal jammer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2

Step 1: Required things . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2

Step 2: Connecting elements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3

Step 3: Android app . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3

Step 4: Arduino code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4

Step 5: .................................................................................................................. 5

Related Instructables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5

Advertisements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5

Comments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5

http://www.instructables.com/id/Phone-Controlled-Signal-Jammer/
Author:REGATTE
time passing when in mood, do crazy stuff with friends and occasionally with gaming stuff and arduino and beagle bone

Intro: Phone controlled signal jammer


Every one has the tiny feel somewhere in their mind to be a hacker!

so today lets do a small hack of blocking a phone signal remotely using only 4 elements

Step 1: Required things


> Arduino uno x 1

> 433 RF Module

> HC06 (bluetooth module)

> Any android phone (which can run the MIT app inventor)

http://www.instructables.com/id/Phone-Controlled-Signal-Jammer/
Step 2: Connecting elements
connect them as shown in picture

Step 3: Android app


using the bit app inventor, easy to use and fun

source code = picture

the program explains itself

one button connects to hc06

2 more buttons for on and off

the skull is to show the power

http://www.instructables.com/id/Phone-Controlled-Signal-Jammer/
Step 4: Arduino code
#include (SoftwareSerial.h>

SoftwareSerial mySerial(0, 1);

char state;

int LED = 13;

void setup()

pinMode(LED, OUTPUT);

Serial.begin(9600);

mySerial.begin(9600);

digitalWrite(LED,LOW);

void loop()

state = mySerial.read();

if (state == '0') {

noTone(8);

digitalWrite(LED,LOW);
}

if (state == '1')

{ tone(8, 15000);

http://www.instructables.com/id/Phone-Controlled-Signal-Jammer/
digitalWrite(LED,HIGH);

delay(100);

Step 5:
vedio will be there by nxt week

Related Instructables

How To Create
TV Remote Your Signal
Low Cost Tic-Tac TV Jammer by IR Jammer TV Remote
Jammer by
Arduino Remote Jammer BearGrills Using the LinkIt Jammer by
Jammer 433 Daniyal Shamsi by One by gokul_lf agupta52
Mhz by fprocyon 154
DangerousTim

Advertisements

Comments

http://www.instructables.com/id/Phone-Controlled-Signal-Jammer/

You might also like