I'm attempting to use the "SET EAS" (A2) custom command for an ICODE SLIX2 tag (Documentation can be found on Google).
The custom request parameters are just suppose to be the UID of the tag, but given that I'm using addressed mode, I assume that it gets added automatically, and I don't need to add any request parameters.
I have also tried to add the tag UID as a parameter, but no matter what I try I just get a "Invalid Parameter".
Can anyone spot what I am doing wrong 😕
The custom request parameters are just suppose to be the UID of the tag, but given that I'm using addressed mode, I assume that it gets added automatically, and I don't need to add any request parameters.
Code Block swift tag.customCommand(requestFlags: [.highDataRate, .address], customCommandCode: 0xA2, customRequestParameters: Data()) { (data, error) in ... }
I have also tried to add the tag UID as a parameter, but no matter what I try I just get a "Invalid Parameter".
Can anyone spot what I am doing wrong 😕