All Projects → h4kbas → nfc-reader

h4kbas / nfc-reader

Licence: MIT license
A simple library that provides to use rfid card readers.

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to nfc-reader

Fool
Simple Russian voice assistant based on Android Things and Raspberry Pi 3
Stars: ✭ 26 (-70.11%)
Mutual labels:  rfid
WemosD1 HomeMatic RFID
RFID Reader integration for HomeMatic house automation
Stars: ✭ 18 (-79.31%)
Mutual labels:  rfid
Mifareclassictool
An Android NFC app for reading, writing, analyzing, etc. MIFARE Classic RFID tags.
Stars: ✭ 2,698 (+3001.15%)
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 (-71.26%)
Mutual labels:  rfid
flipperzero-firmware
Flipper Zero firmware source code
Stars: ✭ 2,551 (+2832.18%)
Mutual labels:  rfid
rdm6300
A simple library to interface with RDM6300 RFID reader.
Stars: ✭ 46 (-47.13%)
Mutual labels:  rfid
controle-de-acesso
Projeto CDA - "Controle de Acesso" utilizando Golang, VueJS, PostgreSQL e MQTT
Stars: ✭ 26 (-70.11%)
Mutual labels:  rfid
chamgo-qt
QT based GUI for Chameleon-RevE-Rebooted & Chameleon RevG - written in Golang
Stars: ✭ 34 (-60.92%)
Mutual labels:  rfid
PN532-HSU
PN532 HSU (UART) library for Python
Stars: ✭ 29 (-66.67%)
Mutual labels:  rfid
RFID-cloner
Handy device for cloning RFID chips/cards.
Stars: ✭ 55 (-36.78%)
Mutual labels:  rfid
rfid-reader-http
PC/SC lite HTTP wrapper for reading from a remote card reader (RFID & NFC).
Stars: ✭ 27 (-68.97%)
Mutual labels:  rfid
android-things-rc522
Android library to communicate with RFID Module RC522
Stars: ✭ 44 (-49.43%)
Mutual labels:  rfid
advlib
Open source, protocol-agnostic library for decoding ambient wireless packets. We believe in an open Internet of Things.
Stars: ✭ 90 (+3.45%)
Mutual labels:  rfid
sportiduino
Electronic timing system for orienteering and similar outdoor sports events on Arduino
Stars: ✭ 56 (-35.63%)
Mutual labels:  rfid
mfrc522
A platform agnostic driver to interface the MFRC522 (RFID reader/writer)
Stars: ✭ 27 (-68.97%)
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 (-2.3%)
Mutual labels:  rfid
pyrfidhid
Python library to control Chinese USB HID 125Khz RFID Reader/Writer
Stars: ✭ 104 (+19.54%)
Mutual labels:  rfid
esp-idf-rc522
C library for interfacing ESP32 with MFRC522 RFID card reader, packaged as ESP-IDF component
Stars: ✭ 60 (-31.03%)
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 (+302.3%)
Mutual labels:  rfid
Core-NFC-Example
An example project which demonstrate the usage of iOS 11 Core NFC framework.
Stars: ✭ 19 (-78.16%)
Mutual labels:  rfid

NfcReader

A simple library that provides to use rfid card readers.

Usage

Basic usage of the library are provided. I recommend you using events which are very helpful.

Connection

//Initializing
NFCReader NFC = new NFCReader();

//Connecting
NFC.Connect(); // public bool Connect()

//Disconnecting
NFC.Disconnect(); // public void Disconnect()
//Inserted Event 
NFC.CardInserted += new NFCReader.CardEventHandler(...Some function);

//Ejected Event
NFC.CardEjected += new NFCReader.CardEventHandler(... Some function);

//Enabling Event Watching
NFC.Watch(); //public void Watch()

Read, Write Authorize

//Authorizing(which is done automatically by the read and write functions)
NFC.AuthBlock("2"); // private bool AuthBlock(String block)

//Reading
NFC.ReadBlock("2"); //public byte[] ReadBlock(String Block)

//Writing   
NFC.WriteBlock("Some string data that will not exceed block limit", "2"); //public bool WriteBlock(String Text, String Block)

ReaderList, CardUID

//Card UID
NFC.GetCardUID();

//Available Readers 
NFC.GetReadersList(); //public List<string> GetReadersList()

Example Inserted and Ejected Event Usage

public void Card_Inserted()
{
  try
  {
    if (NFC.Connect())
    {
        //Do stuff like NFC.GetCardUID(); ...
    }
    else
    {
        //Give error message about connection...
    }
  }
  catch (Exception ex)
  {
    this.SetStatusText("Hata: Bir Sorun Oluştu Tekrar Deneyiniz",false);
  }
}
public void Card_Ejected()
{
   //Do stuff...
   NFC.Disconnect();
}
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].