嗨胺,
你的命令:
字节
[] data = mType5Tag
.readSingleBlock(0x35
);将读取标签EEPROM中地址0x35处包含的块的内容。
数据的第一个字节是标签返回的状态字节,如iso15693中所定义(如果没有错误,则为0x00)。
数组的其余部分是有效负载,首先以最低有效字节传递。
此有效负载阵列中包含的任何内容都特定于您的应用程序(对于您的应用程序,看起来像是电池信息)。
问候,
达米安
以上来自于谷歌翻译
以下为原文
Hi Amine,
your command:
byte
[] data = mType5Tag
.readSingleBlock(0x35
);will read the content of the block contained at address 0x35 in the tag's EEPROM.
The first byte of data is the status byte returned by the tag as defined in the iso15693 (=0x00 if no error).
The rest of the array is the payload, delivered with the least significant byte first.
Whatever is contained in this payload array is specific to your application (for yours, looks like it is battery information).
Regards,
Damien
嗨胺,
你的命令:
字节
[] data = mType5Tag
.readSingleBlock(0x35
);将读取标签EEPROM中地址0x35处包含的块的内容。
数据的第一个字节是标签返回的状态字节,如iso15693中所定义(如果没有错误,则为0x00)。
数组的其余部分是有效负载,首先以最低有效字节传递。
此有效负载阵列中包含的任何内容都特定于您的应用程序(对于您的应用程序,看起来像是电池信息)。
问候,
达米安
以上来自于谷歌翻译
以下为原文
Hi Amine,
your command:
byte
[] data = mType5Tag
.readSingleBlock(0x35
);will read the content of the block contained at address 0x35 in the tag's EEPROM.
The first byte of data is the status byte returned by the tag as defined in the iso15693 (=0x00 if no error).
The rest of the array is the payload, delivered with the least significant byte first.
Whatever is contained in this payload array is specific to your application (for yours, looks like it is battery information).
Regards,
Damien
举报