VelocAI logo Bluetooth Explorer Documentation

Bluetooth GATT Characteristic Reference

Blood Pressure Measurement (0x2A35)

org.bluetooth.characteristic.blood_pressure_measurement

The Blood Pressure Measurement characteristic is a variable length structure containing a Flags field, a Blood Pressure Measurement Compound Value field, and contains additional fields such as Time Stamp, Pulse Rate and User ID as determined by the contents of the Flags 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
NameBlood Pressure Measurement
UUID0x2A35
Typeorg.bluetooth.characteristic.blood_pressure_measurement
XML RootCharacteristic
Source Fileorg.bluetooth.characteristic.blood_pressure_measurement.xml
Field Count11

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
Blood Pressure Measurement Compound Value - Systolic (mmHg)C1SFLOATorg.bluetooth.unit.pressure.millimetre_of_mercury-C1: Field exists if the key of bit 0 of the Flags field is set to 0
Blood Pressure Measurement Compound Value - Diastolic (mmHg)C1SFLOATorg.bluetooth.unit.pressure.millimetre_of_mercury-C1: Field exists if the key of bit 0 of the Flags field is set to 0
Blood Pressure Measurement Compound Value - Mean Arterial Pressure (mmHg)C1SFLOATorg.bluetooth.unit.pressure.millimetre_of_mercury-C1: Field exists if the key of bit 0 of the Flags field is set to 0
Blood Pressure Measurement Compound Value - Systolic (kPa)C2SFLOATorg.bluetooth.unit.pressure.pascal3C2: Field exists if the key of bit 0 of the Flags field is set to 1
Blood Pressure Measurement Compound Value - Diastolic (kPa)C2SFLOATorg.bluetooth.unit.pressure.pascal3C2: Field exists if the key of bit 0 of the Flags field is set to 1
Blood Pressure Measurement Compound Value - Mean Arterial Pressure (kPa)C2SFLOATorg.bluetooth.unit.pressure.pascal3C2: Field exists if the key of bit 0 of the Flags field is set to 1
Time StampC3N/A--C3: Field exists if the key of bit 1 of the Flags field is set to 1
Pulse RateC4SFLOATorg.bluetooth.unit.period.beats_per_minute-C4: Field exists if the key of bit 2 of the Flags field is set to 1
User IDC5uint8--C5: Field exists if the key of bit 3 of the Flags field is set to 1
Measurement StatusC616bit--C6: Field exists if the key of bit 4 of the Flags field is set to 1

Bit Map

Bit-level enumerations extracted from the XML BitField definition.

Field Bit Size Name 0 Means 1 Means
Flags01Blood Pressure Units FlagBlood pressure for Systolic, Diastolic and MAP in units of mmHgBlood pressure for Systolic, Diastolic and MAP in units of kPa
Flags11Time Stamp FlagTime Stamp not presentTime Stamp present
Flags21Pulse Rate FlagPulse Rate not presentPulse Rate present
Flags31User ID FlagUser ID not presentUser ID present
Flags41Measurement Status FlagMeasurement Status not presentMeasurement Status present
Measurement Status01Body Movement Detection FlagNo body movementBody movement during measurement
Measurement Status11Cuff Fit Detection FlagCuff fits properlyCuff too loose
Measurement Status21Irregular Pulse Detection FlagNo irregular pulse detectedIrregular pulse detected
Measurement Status32Pulse Rate Range Detection FlagsPulse rate is within the rangePulse rate exceeds upper limit
Measurement Status51Measurement Position Detection FlagProper measurement positionImproper measurement position

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 blood_pressure_measurement_compound_value_systolic_mmhg (SFLOAT) according to Bluetooth format rules.
  // Parse blood_pressure_measurement_compound_value_diastolic_mmhg (SFLOAT) according to Bluetooth format rules.
  // Parse blood_pressure_measurement_compound_value_mean_arterial_pressure_mmhg (SFLOAT) according to Bluetooth format rules.
  // Parse blood_pressure_measurement_compound_value_systolic_kpa (SFLOAT) according to Bluetooth format rules.
  // Parse blood_pressure_measurement_compound_value_diastolic_kpa (SFLOAT) according to Bluetooth format rules.
  // Parse blood_pressure_measurement_compound_value_mean_arterial_pressure_kpa (SFLOAT) according to Bluetooth format rules.
  // Parse time_stamp (N/A) according to Bluetooth format rules.
  // Parse pulse_rate (SFLOAT) according to Bluetooth format rules.
  const user_id = dataView.getUint8(offset + 0);
  return { flags, blood_pressure_measurement_compound_value_systolic_mmhg, blood_pressure_measurement_compound_value_diastolic_mmhg, blood_pressure_measurement_compound_value_mean_arterial_pressure_mmhg, blood_pressure_measurement_compound_value_systolic_kpa, blood_pressure_measurement_compound_value_diastolic_kpa };
}

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 Blood Pressure Measurement in Bluetooth GATT?

Blood Pressure Measurement is defined as a Bluetooth GATT characteristic entry with type org.bluetooth.characteristic.blood_pressure_measurement and UUID 0x2A35.

What UUID identifies Blood Pressure Measurement?

The UUID for Blood Pressure Measurement is 0x2A35.

How should I parse Blood Pressure 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.