You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 8, 2022. It is now read-only.
Hello everyone, I'm developing a mobile app for reading and writting tags ICODE SLIX SL2S2002 ISO 15693. I'm having trouble getting the raw Inventory Read command for 'Inventory Read'.
componentDidMount() {
NfcManager.start();
}
// attached to a button
readData = async () => {
try {
let tech = NfcTech.NfcV;
let resp = await NfcManager.requestTechnology(tech, {
alertMessage: "Ready for magic",
});
let cmd = NfcManager.transceive;
resp = cmd(rawCommand)
.then( response => {
console.log(response)
})
.catch( error => {
console.log('error cmd', error);
}
The other issue could be related to timing.
I dont get any response from the TAG, neither the data response nor the response of the error byte array. I get:
[Error: transceive fail]
I would appreciate any help, thanks!
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello everyone, I'm developing a mobile app for reading and writting tags ICODE SLIX SL2S2002 ISO 15693. I'm having trouble getting the raw Inventory Read command for 'Inventory Read'.
The other issue could be related to timing.
I dont get any response from the TAG, neither the data response nor the response of the error byte array. I get:
[Error: transceive fail]
I would appreciate any help, thanks!
The text was updated successfully, but these errors were encountered: