BleV1 Trait
Information regarding the device BLE system.
Trait Type: Standard
Reported States
Note: See Overview: Device Reported State for more information on reported state flows.
State Definitions
bleSecureElementVersion State
Indicates the secure element version of the BLE subsystem.
Data Type: String
bleBootloaderVersion State
Indicates the boot loader version of the BLE subsystem.
Data Type: String
bleApplicationVersion State
Indicates the boot loaded application version of the BLE subsystem.
Data Type: String
Device State Query GQL Examples
Request Example
GraphQL
query Device {
device(deviceId: "9a8f6104-6c50-476e-90ee-16b9a2dafc8d") {
id
traits {
... on BleV1DeviceTrait{
name
state {
bleSecureElementVersion {
reported {
value
}
}, bleBootloaderVersion{
reported {
value
}
}, bleApplicationVersion{
reported {
value
}
},
}
}
}
}
}Response Example
Plain text
{
"data": {
"device": {
"id": "9a8f6104-6c50-476e-90ee-16b9a2dafc8d",
"traits": [
{
"name": "BleV1",
"state": {
"bleSecureElementVersion": {
"reported": {
"value": "SE:01.02.16"
}
}, "bleBootloaderVersion": {
"reported": {
"value": "BL:02.04.000002"
} }, "bleApplicationVersion": { "reported": { "value": "APP:01.00.765924"
} } }
}
]
}
}
}Was this section helpful?
What made this section unhelpful for you?
On this page
- BleV1 Trait