All Projects → arduino12 → rdm6300

arduino12 / rdm6300

Licence: GPL-3.0 License
A simple library to interface with RDM6300 RFID reader.

Programming Languages

C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to rdm6300

pyrfidhid
Python library to control Chinese USB HID 125Khz RFID Reader/Writer
Stars: ✭ 104 (+126.09%)
Mutual labels:  rfid, rfid-reader, 125khz
PN532-HSU
PN532 HSU (UART) library for Python
Stars: ✭ 29 (-36.96%)
Mutual labels:  rfid, rfid-reader
mfrc522
A platform agnostic driver to interface the MFRC522 (RFID reader/writer)
Stars: ✭ 27 (-41.3%)
Mutual labels:  rfid
flipperzero-firmware
Flipper Zero firmware source code
Stars: ✭ 2,551 (+5445.65%)
Mutual labels:  rfid
Fool
Simple Russian voice assistant based on Android Things and Raspberry Pi 3
Stars: ✭ 26 (-43.48%)
Mutual labels:  rfid
chamgo-qt
QT based GUI for Chameleon-RevE-Rebooted & Chameleon RevG - written in Golang
Stars: ✭ 34 (-26.09%)
Mutual labels:  rfid
barnowl
Technology-agnostic middleware for RFID, RTLS and M2M, enabling location-aware physical spaces. We believe in an open Internet of Things.
Stars: ✭ 25 (-45.65%)
Mutual labels:  rfid
RFID-cloner
Handy device for cloning RFID chips/cards.
Stars: ✭ 55 (+19.57%)
Mutual labels:  rfid
WemosD1 HomeMatic RFID
RFID Reader integration for HomeMatic house automation
Stars: ✭ 18 (-60.87%)
Mutual labels:  rfid
esp8266-rfid-banco-de-dados
Projeto com objetivo de autenticar/autorizar usuários a partir de Tags RFID utilizando Banco de Dados
Stars: ✭ 85 (+84.78%)
Mutual labels:  rfid
android-things-rc522
Android library to communicate with RFID Module RC522
Stars: ✭ 44 (-4.35%)
Mutual labels:  rfid
controle-de-acesso
Projeto CDA - "Controle de Acesso" utilizando Golang, VueJS, PostgreSQL e MQTT
Stars: ✭ 26 (-43.48%)
Mutual labels:  rfid
esp-idf-rc522
C library for interfacing ESP32 with MFRC522 RFID card reader, packaged as ESP-IDF component
Stars: ✭ 60 (+30.43%)
Mutual labels:  rfid
rfid-reader-http
PC/SC lite HTTP wrapper for reading from a remote card reader (RFID & NFC).
Stars: ✭ 27 (-41.3%)
Mutual labels:  rfid
ChameleonMini
The ChameleonMini is a versatile contactless smartcard emulator compliant to NFC. The ChameleonMini was first developed by KAOS. This is NOT the official repo for KAOS's ChameleonMini. For further information see the Getting Started Page
Stars: ✭ 350 (+660.87%)
Mutual labels:  rfid
Mifareclassictool
An Android NFC app for reading, writing, analyzing, etc. MIFARE Classic RFID tags.
Stars: ✭ 2,698 (+5765.22%)
Mutual labels:  rfid
sportiduino
Electronic timing system for orienteering and similar outdoor sports events on Arduino
Stars: ✭ 56 (+21.74%)
Mutual labels:  rfid
TonUINO
Alternative TonUINO Firmware
Stars: ✭ 112 (+143.48%)
Mutual labels:  rfid
rfid-audio
RFID jukebox (mp3 player controlled by rfid)
Stars: ✭ 33 (-28.26%)
Mutual labels:  rfid-reader
Sonos RFID Controller
RFID controller for the Sonos music player
Stars: ✭ 17 (-63.04%)
Mutual labels:  rfid

rdm6300

A simple library to interface with RDM6300 RFID reader.

Features

  • Fast and single tag reading, even if it held near the antenna for a while.
  • Using a single given GPIO pin or a Stream.
  • Can tell if the tag is still near the antenna.
  • Both hardware and software uart (serial) support on esp8266.
  • SAMD hardware uart (serial) support.
  • Both SoftwareSerial and AltSoftSerial support.

Getting Started

Hardware

  • RDM6300 module with matching antenna.
  • 125KHz RFID tags.
  • Microcontroller (arduino, esp8266, esp32...).

rdm6300_connections

Software

A simple RFID tag reader with textual serial output: examples/read_to_serial/read_to_serial.ino

API

  • void begin(Stream *stream) - Initialize instance to read from a given stream.
  • void begin(int rx_pin, uint8_t uart_nr=1) - Initialize instance to read from a given pin.
  • void set_tag_timeout(uint32_t tag_timeout_ms) - sets the tag "valid" timeout, (300ms default)
    RDM6300 sends packet every 65ms when tag is near- better higher values for debouncing.
  • uint32_t get_tag_id() - Returns the tag_id as long as it is near, 0 otherwise.
  • uint32_t get_new_tag_id() - Returns the tag_id of a "new" near tag,
    following calls will return 0 as long as the same tag is kept near.
  • bool update() - Updates the internal values must be called repeatedly! deprecated!
  • bool is_tag_near() - Returns whether a tag is held near. deprecated! use get_tag_id().

Enjoy!

A.E.TECH

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].