Phone Controlled Signal Jammer

by REGATTE in Circuits > Arduino

52760 Views, 81 Favorites, 0 Comments

Phone Controlled Signal Jammer

Unknown.jpeg

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

Required Things

Screen Shot 2016-11-13 at 10.14.17 AM.png
Unknown-1.jpeg
Unknown.jpeg

> Arduino uno x 1

> 433 RF Module

> HC06 (bluetooth module)

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

Connecting Elements

schematic.jpg

connect them as shown in picture

Android App

source_code.jpg
android_layout.jpg

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

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);

digitalWrite(LED,HIGH);

}

delay(100);

}

vedio will be there by nxt week