-
Notifications
You must be signed in to change notification settings - Fork 0
Device Security User Interface
bradreevmx edited this page Jul 20, 2018
·
3 revisions
This function returns the security information for a specific version for a ModelID.
| Type | Name | Description |
|---|---|---|
| address | ModelId | ModelId for the model. |
| uint | Index | Version Index |
| Type | Name | Description |
|---|---|---|
| string | MUD | IETF Manufacturer Usage Descriptor |
| string | SecurityMetaData | Meta data for regional security information |
| string | VersionName | Version name, which should match the compliance record |
| string | URI | Firmware update URI |
var ModelId = "0xbd4d579e0819c4ab3d1b6d59b8429218fc923507"
var Index = 0
DeviceSecurity.Read(ModelId, Index)
This function returns the total number of versions for a single device.
| Type | Name | Description |
|---|---|---|
| address | ModelId | ModelId for the model. |
| Type | Name | Description |
|---|---|---|
| uint | ReadCount | Number of firmware versions which the manufacturer has posted |
var ModelId = "0xbd4d579e0819c4ab3d1b6d59b8429218fc923507"
DeviceSecurity.ReadCount(ModelId)