Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
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,279
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
2 projects • 2 followers
Network engineer by day, with some programming, design, and manufacturing experience.
Contact

Comments

Please log in or sign up to comment.