ACR122u card-emulation mode send PN532 commands

无人久伴 提交于 2019-12-02 08:21:38

Assuming 08 D406 6305 630D 6338 means

  • 08 [Lc]
  • D406 6305 630D 6338 [data]

It would look like this:

byte[] command = new byte[8] { (byte) 0xD4, 0x06, 0x63, 0x05, 0x63, 0x0D, 0x63, 0x38 };

You can leave out the the 8 since javac will count the bytes for you.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!