B4A Tutorial NFC - Reading and Writing - Erel    Aug 16, 2022   (24 reactions) NFC v2.00 adds support for low level access to the NFC features. This allows reading and writing from NFC tags.
The NFC library provides three features:
- Reading Ndef tags based intent filters: Reading NDEF data from NFC tags
- Sending data between two devices (Android Beam): https://www.b4x./#con B4A Example Read And Write NFC Tags ! - Justcooldev    May 10, 2022   (3 reactions) End If End If Private Sub TagTech_Connected (Success As Boolean) Log($"Connected: ${Success}"$) If Success = False Then toast.Show("Error connecting to tag") Log(LastException) Else WriteNdef(Array(nfc.CreateMimeRecord("text/plain", Ignore.Text.GetBytes("UTF8" B4i Library NFCEx class - Write Ndef tags - Erel    Jan 11, 2023   (6 reactions) Starting from iOS 13 it is possible to write Ndef tags.
NFCEx adds writing support to iNFC library.
Before you start with writing, make sure to follow the "reading" tutorial and get the example working: https://www.b4x.com/android/forum/threads/nfc-reading-ndef-tags.84784/#post-536918
It requires s B4A Question NDEF Write - Erel (first post)    Mar 12, 2015   (1 reaction) NFC library doesn't support writing. There are several other libraries that provide more features: https://www.b4x./?query=nfc+write&page=1&prefix=0 B4A Question NFC writing to blank card - hung    Nov 02, 2022 Dim techs As List = gnfc.GetTechList(intentstart) If gnfc_mode = 1 And techs.IndexOf("android.nfc.tech.Ndef") > -1 Then gnfctech.Initialize("NFCTag", "android.nfc.tech.Ndef" , intentstart) gnfctech.Connect els B4i Question iOS 13 NFC Writing - Erel (first post)    Oct 22, 2019   (2 reactions) Writing is now supported: https://www.b4x.-class-write-ndef-tags.110726/ B4A Question NFC write or p2p - Erel (first post)    Mar 06, 2016 The official NFC library doesn't support writing. I do plan to add support for writing in the near future.
You can try this library: https://www.b4x.com/android/forum/threads/nfc-tagwriter-and-ibeacon-libraries-for-free.42137/#content B4A Question NFC - which tag models / standards are most widespread? - drgottjr (first post)    Sep 26, 2023   (1 reaction) if you exclude credit cards and id tags (for which there would be hundred of millions of examples),
the most popular tag types are those that support ndef. ndef is a level of abstraction capable of
supporting many tag types which recognize it. think of ndef as b4x; you code in b4x, and your app
ca B4A Question NFCTagWriter - dibesw    Jan 27, 2022 I want write plus record (type text) in a TAG I found this to work well Sub createTextNDEF(Text As String) As RSNFCRecord Dim lang As String = "en" Dim textBytes() As Byte = Text.GetBytes("UTF8") Dim langBytes() As Byte = lang.GetBytes("US-ASCII") Dim langLength As Int = langBytes.L B4A Question How to Read/Write Mifare 1k tag - DonManfred (first post)    Apr 24, 2019   (1 reaction) The NFC lib gives you the possibility to communicate with a NFC Tag.
A specific Protocol (like the one you want to use) you need to implement by yourself. Page: 1   2   3   4   5   6   7   Powered by ColBERT |