Questions tagged [iso-15693]

ISO/IEC 15693 is a series of ISO standards for vicinity coupling RFID systems.

ISO/IEC 15693 is a series of ISO standards for vicinity coupling RFID systems. These standards define the interaction between vicinity cards/tags and reader devices.

Vicinity coupling systems operate in the 13.56 MHz frequency band. Compared to proximity coupling systems and NFC (which also operate on 13.56 MHz), vicinity coupling systems offer larger read distances (typically 1--1.5 meters).

Eventhough this standard is not directly part of , as of today, many devices support (parts of) the ISO/IEC 15693 standard.

89 questions
0
votes
1 answer

How to write data into an empty NfcV tag?

I am new to Android and working on an NFC project. I have an empty NfcV tag. I need to write data into the tag and read data from it. Any kind of help is appreciated by me.
user916718
  • 3
  • 1
  • 3
0
votes
0 answers

Get total memory size of an iso-15693 nfc device

I have to get the total memory size in bytes of an iso-15693 NFC device. I downloaded several apps from App Store and they show me this information. I'm new of NFC world, I looked at NFCISO15693Tag protocol in CoreNFC iOS framework but with no…
Giorgio
  • 1,973
  • 4
  • 36
  • 51
0
votes
1 answer

reading an iso15693 nfc tag with flutter_nfc_kit

I'm trying to read data form an iso15693 nfc tag. I can detect the tag but based on the response values almost all being blank or false I feel like I won't be able to read it. I'm new to flutter_nfc_kit. I'm wondering if I'm doing something…
benino
  • 577
  • 2
  • 6
  • 16
0
votes
0 answers

How to decode bytes to string in Swift?

I wanted to know if somebody would help me with a technical challange: reading the Freestyle Libre sensor data in Swift. The glucose sensor for diabetic patients uses ISO 15693 protocol for communicating with other devices by vicinity. For now, I…
0
votes
1 answer

Write Lock Block command for NfcV

I am trying to lock data to a NXP ICODE SLIX SL2S2002 tag type 5 (ISO 15693) to make it readonly by using the WRITE SINGLE BLOCKS command through the NfcV object in an ionic based app: private readonly cmdISO15693 = { READ_SINGLE_BLOCK:…
Daniel
  • 1
  • 3
0
votes
1 answer

android.nfc.tech.NfcV what does mean the byte return by getResponseFlags?

I have to do an application in NFC. My tag return NFC-V, so I cast it in NfcV. And I have to extract some information, and the method getResponseFlags seems contains what I need. But I didn't find any documentation that explains me how read the…
jhelp
  • 1
  • 1
0
votes
1 answer

Reading ISO 15693 tags on iOS13

I'm implementing new feature in my app that should allow users to scan NFC tags. I've got some tags for testing that NFCTagReaderSession finds as ISO 15693 tags. I'm able to find and connect to a it, however, when I try to read data stored on a tag…
Matthes
  • 515
  • 5
  • 12
0
votes
1 answer

Android application to read and write data in an nfc

I'm new in NFC and i am developing an android application to read and write data in an nfc, but i'm having some problems. it's code i'm using (WRITE): @Override protected void onNewIntent(Intent intent) { super.onNewIntent(intent); if…
cazzruan
  • 25
  • 6
0
votes
0 answers

CoreNFC-IOS13: After connecting the iso15693 tag, iso15693Tag.isAvailable is always returning false

After connecting to ios15693 NFC Tag, when I am checking iso15693Tag.isAvailable, it always returns false but I am able to get the system information details. I am trying to connect the ios15693 NFC-V type and trying to read the data but I am not…
Narayana Dvl
  • 211
  • 1
  • 5
  • 12
0
votes
1 answer

Is there a way to use custom NFC-V commands?

I am using a sensor with RF430FRL 15xH IC from which I plan to obtain the data through NFC. Is there a way to write and activate the custom NFC codes? I have tried custom 16-bit commands for SINGLE READ (0xC0) and MULTIPLE READ (0xC3). The NFC data…
0
votes
0 answers

I can not read / write NFC tag (NfcV)

I am developing a mobile application for Android for reading and writing data on NFC. While working with the M24SR04 chip from ST, then everything worked. After the transition to the chip M24LR64ER (also from ST) - ceased. The application can not…
0
votes
3 answers

Android 2.3 and ISO 15693

I want to know if Android 2.3 Gingerbread and the Nexus S phone supports reading/writing ISO 15693 RFID chips? As of now, I know it can READ ISO 14443... Does anyone know?
user591009
  • 3
  • 1
  • 3
0
votes
1 answer

CoreNFC will not read when TLV field uses a 3-byte length format

Unable to get any response from CoreNFC when NDEF length is over 256 bytes and therefore requires the use of a 3-byte field versus a 1-byte field. I should note that tags can both be read on Android. Can anyone else confirm this behavior or help me…
navillus
  • 45
  • 6
0
votes
1 answer

Log all calls to .tranceive()

Is there a way to log the binary data send to the tranceive method of a NFC tag? https://developer.android.com/reference/android/nfc/tech/NfcV.html#transceive(byte[]) I am trying to find the last few missing pieces in a protocol and it would help if…
NKCSS
  • 2,716
  • 1
  • 22
  • 38
0
votes
1 answer

Android - Writing to ISO15693 Tags

I'm currently trying to write a couple of bytes to a specific block. My read commands work fine and I am able to read any block of my tag using the code below: command = new byte[]{ (byte) 0x02, // Flags (byte) 0x23, //…
Marakalastic
  • 85
  • 12