I had a problem sending the 0xB3 custom command using the handler.customCommand function.
Hello!
I'm using a build of type st25dv64k
For iOS operating systems, use the NfcManager.requestTechnology(NfcTech.Iso15693IOS) technology and for the password:
NfcManager.iso15693HandlerIOS.customCommand(
flags = number,
customCommandCode = number,
customRequestParameters= [] );
I am using the structure
I had a problem sending the 0xB3 custom command using the handler.customCommand function.
Here is my code, I can't see any error there, but my RN code only will give me that [error] message, without giving me any information about what is going on.
try { const idBytes= [1,2,3,4,5,6,7,8]; const passwordBytes= [0,0,0,0,0,0,0,0]
resp = await NfcManager.iso15693HandlerIOS.customCommand({
flags = 0x02,
customCommandCode = 0xb3,
customRequestParameters = [
0x02, 0xb3, 0x02, ...idBytes, 0x02, ...passwordBytes, ],
});Giving me this error:
Error [error]
Could you help me out?
Thanks!
