Hi. I'm developing Flutter using plugin flutter_nfc_kit that support transceive().
Currrently facing a problem to reset EAS.
NFC: NXP ICODE SLIX
Uint8List command = Uint8List(10);
command[0] = 0xA3; // Reset EAS
command[1] = 0x04;
command[2...9] = UID
await FlutterNfcKit.transceive(command);
Response from transceive: [1, 15]. After ehecking with alarm EAS still activated.
If someone can help me to solve the problem it would be great.
Thank you.