Trey Schisser
Published

Automatic Card Skimmer Scanner/Reporter

SBC w/ bluetooth, a cell modem, and a gps, build a cheap portable scanner for the automatic detection and reporting credit card skimmers.

BeginnerWork in progress5,002
Automatic Card Skimmer Scanner/Reporter

Things used in this project

Story

Read more

Code

Arduino Uno + HC-05 simulated skimmer

C/C++
int state = 0;

void setup() { 
 // initialize serial interface and give a small delay to let the system settle
 Serial.begin(9600);  
 delay(50); 
} 

void loop() { 
 // if something is sitting in the serial input queue
 if (Serial.available() > 0) { 
   // grab value from the queue
   state = Serial.read(); 
 } 
 // mimic a skimmer by replying to a 'P' with an 'M'
 if( state == 'P' ) { 
   Serial.print('M'); 
 } 
} 

Credits

Trey Schisser

Trey Schisser

2 projects • 2 followers
Network engineer by day, with some programming, design, and manufacturing experience.

Comments