VelocAI logo Bluetooth Explorer Documentation

Bluetooth GATT Characteristic Reference

PLX Spot-Check Measurement (0x2A5E)

org.bluetooth.characteristic.plx_spot_check_measurement

The PLX Spot-check Measurement characteristic, if supported, is used to send Spot-check measurements of SpO2 (Percent oxygen saturation of hemoglobin) and PR (pulse rate). This characteristic is a variable length structure containing the Flags field, the SpO2PR-Spot-Check field, and depending on the contents of the Flags field, the Timestamp field, the Measurement Status field, the Device and Sensor Status field, and/or the Pulse Amplitude Index field.

Quick Summary

Payload length is profile-defined or variable based on field formats. This page is generated from official GATT XML and presented as implementation-ready guidance.

At a Glance

Key reference details for BLE implementation, interoperability testing, and AI-assisted troubleshooting.

PropertyValue
NamePLX Spot-Check Measurement
UUID0x2A5E
Typeorg.bluetooth.characteristic.plx_spot_check_measurement
XML RootCharacteristic
Source Fileorg.bluetooth.characteristic.plx_spot_check_measurement.xml
Field Count7

Field Specification

Parsed field definitions from the source XML value structure.

Field Requirement Format Unit Exponent Notes
FlagsMandatory8bit--These flags define which data fields are present in the Characteristic value
SpO2PR-Spot-Check - SpO2MandatorySFLOATorg.bluetooth.unit.percentage0Unit is percentage with a resolution of 1
SpO2PR-Spot-Check - PRMandatorySFLOATorg.bluetooth.unit.period.beats_per_minute0Unit is beats per minute with a resolution of 1
TimestampC1N/A--Unit is smallest unit in seconds with a resolution of 1
Measurement StatusC216bit---
Device and Sensor StatusC324bit---
Pulse Amplitude IndexC4SFLOATorg.bluetooth.unit.percentage0Unit is percentage with a resolution of 1

Bit Map

Bit-level enumerations extracted from the XML BitField definition.

Field Bit Size Name 0 Means 1 Means
Flags01Timestamp field is presentFalseTrue
Flags11Measurement Status Field PresentFalseTrue
Flags21Device and Sensor Status Field PresentFalseTrue
Flags31Pulse Amplitude Index field is presentFalseTrue
Flags41Device Clock is Not SetFalseTrue
Measurement Status51Measurement OngoingFalseTrue
Measurement Status61Early Estimated DataFalseTrue
Measurement Status71Validated DataFalseTrue
Measurement Status81Fully Qualified DataFalseTrue
Measurement Status91Data from Measurement StorageFalseTrue
Measurement Status101Data for DemonstrationFalseTrue
Measurement Status111Data for TestingFalseTrue
Measurement Status121Calibration OngoingFalseTrue
Measurement Status131Measurement UnavailableFalseTrue
Measurement Status141Questionable Measurement DetectedFalseTrue
Measurement Status151Invalid Measurement DetectedFalseTrue
Device and Sensor Status01Extended Display Update OngoingFalseTrue
Device and Sensor Status11Equipment Malfunction DetectedFalseTrue
Device and Sensor Status21Signal Processing Irregularity DetectedFalseTrue
Device and Sensor Status31Inadequite Signal DetectedFalseTrue
Device and Sensor Status41Poor Signal DetectedFalseTrue
Device and Sensor Status51Low Perfusion DetectedFalseTrue
Device and Sensor Status61Erratic Signal DetectedFalseTrue
Device and Sensor Status71Nonpulsatile Signal DetectedFalseTrue
Device and Sensor Status81Questionable Pulse DetectedFalseTrue
Device and Sensor Status91Signal Analysis OngoingFalseTrue
Device and Sensor Status101Sensor Interface DetectedFalseTrue
Device and Sensor Status111Sensor Unconnected to UserFalseTrue
Device and Sensor Status121Unknown Sensor ConnectedFalseTrue
Device and Sensor Status131Sensor DisplacedFalseTrue
Device and Sensor Status141Sensor MalfunctioningFalseTrue
Device and Sensor Status151Sensor DisconnectedFalseTrue

Byte Layout and Decode

Payload length is profile-defined or variable based on field formats.

function decodePayload(dataView, offset = 0) {
  // Parse flags (8bit) according to Bluetooth format rules.
  // Parse spo2pr_spot_check_spo2 (SFLOAT) according to Bluetooth format rules.
  // Parse spo2pr_spot_check_pr (SFLOAT) according to Bluetooth format rules.
  // Parse timestamp (N/A) according to Bluetooth format rules.
  // Parse measurement_status (16bit) according to Bluetooth format rules.
  // Parse device_and_sensor_status (24bit) according to Bluetooth format rules.
  // Parse pulse_amplitude_index (SFLOAT) according to Bluetooth format rules.
  return { flags, spo2pr_spot_check_spo2, spo2pr_spot_check_pr, timestamp, measurement_status, device_and_sensor_status };
}

Use Cases and Integration Notes

BLE Telemetry

Map characteristic values into dashboards and alerts for device observability.

Firmware Regression

Compare decoded fields across builds to detect protocol or scaling changes.

App Integration

Build stable parsing paths that convert raw payloads into typed app models.

Implementation Checklist

  • Validate payload length and mandatory fields before decode.
  • Decode with Bluetooth-specified signedness, unit, and exponent handling.
  • Convert units at presentation boundaries to avoid drift in business logic.
  • Persist raw packets and decoded values for reproducible troubleshooting.

FAQ

What is PLX Spot-Check Measurement in Bluetooth GATT?

PLX Spot-Check Measurement is defined as a Bluetooth GATT characteristic entry with type org.bluetooth.characteristic.plx_spot_check_measurement and UUID 0x2A5E.

What UUID identifies PLX Spot-Check Measurement?

The UUID for PLX Spot-Check Measurement is 0x2A5E.

How should I parse PLX Spot-Check Measurement?

Payload length is profile-defined or variable based on field formats.

Where does this definition come from?

This page is generated from the Bluetooth SIG mirror XML in the oesmith/gatt-xml repository.

How does this page support BLE implementation?

The page combines structured tables, practical Q&A, and JSON-LD metadata to help teams validate integrations and troubleshoot consistently.