# Modules.Nfc.TagTechnologyMifareUltralight
Provides access to MIFARE Ultralight properties and I/O operations on a Modules.Nfc.NfcTag.
# Overview
Use the Modules.Nfc.createTagTechnologyMifareUltralight method to create this tag technology.
See also: MifareUltralight (opens new window)
# Properties
# apiName READONLY
The name of the API that this proxy corresponds to.
The value of this property is the fully qualified name of the API. For example, Titanium.UI.Button
returns Ti.UI.Button
.
# lifecycleContainer
The Window or TabGroup whose Activity lifecycle should be triggered on the proxy.
If this property is set to a Window or TabGroup, then the corresponding Activity lifecycle event callbacks will also be called on the proxy. Proxies that require the activity lifecycle will need this property set to the appropriate containing Window or TabGroup.
# tag
The tag technology that has been discovered.
When a tag is discovered, a Modules.Nfc.NfcTag proxy is created and passed as a property to the onNdefDiscovered
, onTagDiscovered
, or
onTechDiscovered
callback (see NdefDiscovered).
# Methods
# connect
Enable I/O operations to the tag.
Only one Tag Technology proxy can be connected to a Tag at a time.
Returns
- Type
- void
# getMaxTransceiveLength
Return the maximum number of bytes that can be sent with transceive
.
Returns
- Type
- Number
# getTimeout
Get the current transceive
timeout in milliseconds.
Returns
- Type
- Number
# getType
Return the MIFARE Ultralight type of the tag.
One of MIFARE_ULTRALIGHT_TYPE_ULTRALIGHT, MIFARE_ULTRALIGHT_TYPE_ULTRALIGHT_C, or MIFARE_ULTRALIGHT_TYPE_UNKNOWN.
Returns
- Type
- Number
# isConnected
Returns true if connect has completed, and close has not been called, and the tag is not known to be out of range.
Returns
- Type
- Boolean
# isValid
Return true if this tag technology was successfully obtained.
Returns
- Type
- Boolean
# readPages
Read 4 pages (16 bytes).
Parameters
Name | Type | Description |
---|---|---|
pageOffset | Number | Index of first page to read, starting from 0. |
Returns
4 pages (16 bytes)
- Type
- Titanium.Buffer
# setTimeout
Set the transceive
timeout in milliseconds.
Parameters
Name | Type | Description |
---|---|---|
timeout | Number | Timeout value in milliseconds. |
Returns
- Type
- void
# transceive
Send raw NfcA data to the tag and receive the response.
Parameters
Name | Type | Description |
---|---|---|
data | Titanium.Buffer | Bytes to send. |
Returns
Response bytes received.
- Type
- Titanium.Buffer
# writePage
Write 1 page (4 bytes).
Parameters
Name | Type | Description |
---|---|---|
pageOffset | Number | Index of page to write, starting from 0. |
data | Titanium.Buffer | 4 bytes to write. |
Returns
- Type
- void