We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using ACR1252U-A1 for reader. I cannot do any transmit operations succesffully but I cannot get any response by using control command.
What I tried is
reader.control(new Buffer([0xE0, 0x00, 0x00, 0x18, 0x00]), 3500, 30, function(err, data)[ console.log(data) // undefined });
The text was updated successfully, but these errors were encountered:
Control code should be set based on your OS.
So instead of directly using 3500 set it with reader.SCARD_CTL_CODE(3500)
reader.control(new Buffer([0xE0, 0x00, 0x00, 0x18, 0x00]), reader.SCARD_CTL_CODE(3500), 30, function(err, data)[ console.log(data) // undefined });
Sorry, something went wrong.
That works like a charm. Thank you!
No branches or pull requests
I am using ACR1252U-A1 for reader. I cannot do any transmit operations succesffully but I cannot get any response by using control command.
What I tried is
The text was updated successfully, but these errors were encountered: