Difference between revisions of "Rfid-breakout"
From SB-Components Wiki
(Created page with "<div class="row"> <div class="large-8 column"> == RFID Breakout == RFID Breakout is an updated UART/USB 2.0 interface running at the frequency of 125KHz with a compact desig...") |
|||
Line 41: | Line 41: | ||
+ | ==== Arduino ==== | ||
+ | * Connect RFID breakout with Arduino uno as shown below : | ||
+ | <table> | ||
+ | <tr><td> | ||
+ | <img src="https://raw.githubusercontent.com/sbcshop/RFID-Breakout/main/images/rfid_breakout_circuit_arduino.png" width="500" align="left" height="500 /> </td> | ||
+ | <td> | ||
+ | <table class="wikitable"> | ||
+ | <tr> <th> Pinout </th> <th> Arduino </th></tr> | ||
+ | |||
+ | <tr> <td> VCC </td> <td> 5V </td></tr> | ||
+ | <tr> <td> GND </td> <td> GND </td></tr> | ||
+ | <tr> <td> DATA </td> <td> Digital Pin 0 </td></tr> | ||
+ | </table> </td> </tr> </table> | ||
+ | |||
+ | * Now visit the below link for Arduino source code. | ||
+ | |||
+ | https://github.com/sbcshop/RFID-Breakout/blob/main/Arduino/rfid_read/rfid_read.ino | ||
+ | |||
+ | ==== Raspberry Pi ==== | ||
+ | Connect RFID breakout with Raspberry Pi as shown below : | ||
+ | <table><tr><td> | ||
+ | <img src="https://raw.githubusercontent.com/sbcshop/RFID-Breakout/main/images/rfid_breakout_circuit_raspberry.png" width="500" height="500 /> </td> | ||
+ | <td> | ||
+ | <table class="wikitable"> | ||
+ | <tr> <th> Pinout </th> <th> Raspberry Pi (BCM) </th></tr> | ||
+ | |||
+ | <tr> <td> VCC </td> <td> 5V </td></tr> | ||
+ | <tr> <td> GND </td> <td> GND </td></tr> | ||
+ | <tr> <td> DATA </td> <td> GPIO 15 </td></tr> | ||
+ | |||
+ | </table> </td> </tr> </table> | ||
+ | </td> </tr> </table> | ||
+ | |||
+ | * Now visit the below link for Raspberry Pi source code. | ||
+ | |||
+ | https://github.com/sbcshop/RFID-Breakout/blob/main/Python/rfid_read.py | ||
== Resources == | == Resources == | ||
''' Github ''' | ''' Github ''' | ||
* [https://github.com/sbcshop/RFID-Breakout Source Code] | * [https://github.com/sbcshop/RFID-Breakout Source Code] |
Revision as of 10:33, 25 June 2021
RFID Breakout
RFID Breakout is an updated UART/USB 2.0 interface running at the frequency of 125KHz with a compact design that is compatible with all the variants of Raspberry Pi, Arduino, STM32, PIC, AVR, Beaglebone, etc.
The operating voltage of the RFID breakout is +4.5V to +5.5V(DC). The consumption of the current for RFID breakout is 50mA. It runs at the operating temperature of 0ºC to 80ºC. On the serial line, the baud rate of RFID is efficient, that is 9600 bps.
Features
- Supports all Raspberry Pi, Arduino, STM32, PIC, ARM, AVR, Beaglebone, etc.
- Comes with Development resources and manual
- Supports 125kHz Key Fob/ Tags.
- UART (Serial) / USB 2.0 Interface
- Current Consumption is 50mA.
Specifications
- Operating Voltage - +4.5V to +5.5V(DC)
- Operating Frequency - 125kHz
- Communication Interface - UART (Serial) / USB 2.0
- Default baud rate - 9600 bps
Pinout
Pinout | Description |
---|---|
VCC | Connect to 5V of Power supply. |
GND /td> | Connect to ground |
BEEP | Connect to Buzzer, Goes high on detection of card |
SEL | SEL=1 then o/p =RS232, SEL=0 then o/p=WEIGAND |
DATA /td> | Transmit pin for RS232 Communication |
D0 | WEIGAND interface DATA HIGH pin |
D1 | WEIGAND interface DATA LOW pin |
Installation
Arduino
- Connect RFID breakout with Arduino uno as shown below :
|
- Now visit the below link for Arduino source code.
https://github.com/sbcshop/RFID-Breakout/blob/main/Arduino/rfid_read/rfid_read.ino
Raspberry Pi
Connect RFID breakout with Raspberry Pi as shown below :
|
- Now visit the below link for Raspberry Pi source code.
https://github.com/sbcshop/RFID-Breakout/blob/main/Python/rfid_read.py
Resources
Github