Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

211
Views
How to read/write any tag with rfid in Electron js

I'm building this electron application and I'm trying to integrate RFID to read/write on any tag of any frequencies. I've search the internet for weeks now but nothing works in all I've seen. I have a rfid card reader and card to test with but no head way yet. Help out guys.

var llrp = require("llrp");

const { app, BrowserWindow } = require("electron");

let win;

function createWindow() {
  win = new BrowserWindow({
    width: 800,
    height: 600,
    webPreferences: {
      nodeIntegration: true,
      contextIsolation: false,
    },
  });

  win.loadFile("index.html");

  win.webContents.openDevTools();
  win.on("closed", () => {
    win = null;
  });
}

app.on("ready", createWindow);

app.on("window-all-closed", () => {
  if (process.platform !== "darwin") {
    app.quit();
  }
});

app.on("activate", () => {
    createWindow();
  }
});

var reader = new llrp({
  ipaddress: "192.168.1.102",
  port: 3000,
});

reader.connect();

reader.on("timeout", function () {
  console.log("timeout in session");
});

reader.on("disconnect", function () {
  console.log("disconnect");
});

reader.on("error", function (error) {
  console.log("error: " + JSON.stringify(error));
});

reader.on("didSeeTag", function (tag) {
  console.log("TAG: " + tag.tagID);
});
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!