GeenenTijd / llrp-nodejs

RFID implementation using Nodejs
24 stars 14 forks source link

Connection timeout #3

Closed NetOpWibby closed 8 years ago

NetOpWibby commented 8 years ago

First, thank you for this module. I'd rather work with JavaScript than Java, especially for hardware. Gotta love abstractions.

I've got this module working but after I see Sending ENABLE_EVENTS_AND_REPORTS in Terminal, the connection times out. I'm not sure if that's expected behavior to be quite honest. However, I don't see tag reads either. I have the xArray R680, if that helps.

GlennGeenen commented 8 years ago

This module is a test module, I just made it so it worked for the readers I used. It needs to implement the entire LLRP protocol to be of any use. I once started on this but I do not have the time/patience to properly implement it in JavaScript. I you need it for serious software purposes use something like LLRP toolkit or libraries provided by the reader manufacturer.

NetOpWibby commented 8 years ago

Ah well, that makes sense. Would you be able to point me in the right direction in terms of figuring out how to get started with implementing the rest of the protocol (or at least the parts I want)?

GlennGeenen commented 8 years ago

LLRP protocol

I guess it's easier to port a Java version. Making bindings to an existing C++ library might be the least work. I didn't continue since it's a lot of work for very little gain.

NetOpWibby commented 8 years ago

I understand. Thanks for your help!