Skip to content

MetaData User Interface

bradreevmx edited this page Jul 20, 2018 · 2 revisions

API List

Read
ReadCount


Read

This function returns the Tag/Data information for a given index for a ModelID.

Input Parameters

Type Name Description
address ModelId ModelId for the model.
uint Index Tag Index

Return Values

Type Name Description
string Tag MetaData Tag
string Data Meta data for the associated tag

Example

var ModelId = "0xbd4d579e0819c4ab3d1b6d59b8429218fc923507"
var Index = 0
MeatData.Read(ModelId, Index)

ReadCount

This function returns the total number of tags for a single device.

Input Parameters

Type Name Description
address ModelId ModelId for the model.

Return Values

Type Name Description
uint ReadCount Number of firmware versions which the manufacturer has posted

Example

var ModelId = "0xbd4d579e0819c4ab3d1b6d59b8429218fc923507"
MetaData.ReadCount(ModelId)

Clone this wiki locally