Code Monkey home page Code Monkey logo

Comments (3)

ZBAGI avatar ZBAGI commented on June 12, 2024

Possibly related to fivdi/epoll#26 ?

@edit: I tried to keep application working and looks like after long idle time I still missing 1/2 interrupts on first data broadcast. Just like described in epoll issue linked above

from onoff.

fivdi avatar fivdi commented on June 12, 2024

Possibly related to fivdi/epoll#26 ?

This could very well be the case.

I have never used the Wiegand protocol, but googling says the Wiegand pulse width time is between 20 uS and 100 uS, and the pulse interval time between 200 uS and 20 mS.

If the pulse interval time for your reader is close to 200 uS, I can imagine interrupts being missed, especially at the start of the first read. For example, the JavaScript interpreter may have a lot of work to do for the initial few bits compared to later bits.

from onoff.

ZBAGI avatar ZBAGI commented on June 12, 2024

Refreshing timer without allocating a new object thus minimalizing time spent in the watch function seems to help:

const Gpio = require('onoff').Gpio

var data = [];
var timeout = setTimeout(() => {
	if(data.length == 0)
		return;
		
	console.log(data.join(""));
	data = []
}, 30);

function handleBit(pin, val) {
	pin.watch((_, value) => {
		data.push(val)
		timeout.refresh();
	});
}

var d0 = new Gpio(23, 'in', 'rising', {debounceTimeout: 0});
var d1 = new Gpio(24, 'in', 'rising', {debounceTimeout: 0});
handleBit(d0, 0);
handleBit(d1, 1);

Initially I tried to set one interval and save date of last bit broadcasted, but timeout = Date.now() seems to be not fast enough and still caused interrupts to be missed.

from onoff.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.