gutierrezps / gwiot7941e

A simple library to interface with Gwiot 7941E RFID reader
GNU General Public License v3.0
7 stars 5 forks source link
125khz 7941e arduino arduino-library esp8266 esp8266-arduino rfid rfid-reader

Gwiot 7941E

A simple library to interface with Gwiot 7941E RFID reader. Based on rdm6300 library by Arad Eizen.

Features

Getting Started

Hardware

7941E connections

Software

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

#include <Gwiot7941e.h>

#define GWIOT_7941E_RX_PIN 4
Gwiot7941e gwiot7941e;

void setup()
{
    //...
    gwiot7941e.begin(GWIOT_7941E_RX_PIN);
    //...
}

void loop()
{
    //...
    if (gwiot7941e.update()) {
        Serial.println(gwiot7941e.getLastTagId(), HEX);
    }
    //...
}

API

Additional resources

Here are some additional resources about the Gwiot 7941E RFID reader.