Tan See Youu
Published © LGPL

Where is my thing?

An inventory tracking system help you to find your items.

IntermediateFull instructions provided18,037

Things used in this project

Hardware components

Raspberry Pi 2 Model B
Raspberry Pi 2 Model B
×1
Arduino UNO
Arduino UNO
×1
JT2850 RFID module
×1
JT606 RFID antenna
×1

Software apps and online services

Windows 10 IoT Core
Microsoft Windows 10 IoT Core
Microsoft Azure
Microsoft Azure
Visual Studio 2015
Microsoft Visual Studio 2015

Hand tools and fabrication machines

Microsoft PC runing Windows10 with Visual studio 2015 installed
Android Phone

Story

Read more

Custom parts and enclosures

UHF RFID reader schematic

UHF RFID reader module. it is used for reading RFID tag.

UHF RFID reader module PCB file

UHF RFID reader module. it is used for reading RFID tag

UHF RFID reader module breadboard

UHF RFID reader module. it is used for reading RFID tag

Schematics

Where is my thing on Fritzing

RFID Reader and Arduino Uno Schematic

The connection for Arduino to UHF RFID module.

Code

Arduino Code for RFID reader module

C/C++
/*
  read command will be sent over to RFID module
once tag is read, it will return back to serial port

 */
#include <SoftwareSerial.h>

SoftwareSerial mySerial(10, 11); // RX, TX

void setup() {
  // Open serial communications and wait for port to open:
  Serial.begin(9600);
  while (!Serial) {
    ; // wait for serial port to connect. Needed for Leonardo only
  }

  // set the data rate for the SoftwareSerial port
  mySerial.begin(9600);
}

void loop() { // run over and over
  if (mySerial.available()) {
    //send the read command over to RFID module
    byte message[] = {0xA0,0x06,0x80,0x00,0x01,0x02,0x01,0xD6};
    mySerial.write(message, sizeof(message));
    //send the data back to serial
    if(Serial.available())
      Serial.write(mySerial.read());
  }
}

Where is my thing on GitHub

Credits

Tan See Youu

Tan See Youu

5 projects • 67 followers
someone who love programming and create new stuff

Comments