ISSUE WITH 'INVENTORY READ' COMMAND 'ICODE SLIX ISO 15693'

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

ISSUE WITH 'INVENTORY READ' COMMAND 'ICODE SLIX ISO 15693'

1,424件の閲覧回数
d-moon
Contributor I

Hello everyone, I'm developing a mobile app for reading and writting tags ICODE SLIX SL2S2002 ISO 15693. I'm having trouble getting the raw Inventory Read command for 'Inventory Read'.

2021-11-17_10-03.png2021-11-17_10-03.png

2021-11-17_10-05.png2021-11-17_10-05.png

 

  componentDidMount() {
    NfcManager.start();
  }

  // attached to a button
  readData = async () => {
    try {
      let tech = NfcTech.NfcV;
      let resp = await NfcManager.requestTechnology(tech, {
        alertMessage: "Ready for magic",
      });

   let cmd = NfcManager.transceive;

   resp = cmd(rawCommand)
        .then( response => {
          console.log(response)
        })
        .catch( error => {
          console.log('error cmd', error);
        }

 

The other issue could b related to timing.

I dont get any response from the TAG, neither the data response nor the response of the error byte array. I get:

[Error: transceive fail]

I would appreciate any help, thanks!
 
 
 

 

0 件の賞賛
返信
0 返答(返信)