VelocAI logo Bluetooth Explorer Documentation

Bluetooth GATT Characteristic Reference

Body Composition Feature (0x2A9B)

org.bluetooth.characteristic.body_composition_feature

Body Composition Feature is defined in the Bluetooth GATT XML specification with type org.bluetooth.characteristic.body_composition_feature and UUID 0x2A9B.

Quick Summary

Payload length is 4 bytes. 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
NameBody Composition Feature
UUID0x2A9B
Typeorg.bluetooth.characteristic.body_composition_feature
XML RootCharacteristic
Source Fileorg.bluetooth.characteristic.body_composition_feature.xml
Field Count1

Field Specification

Parsed field definitions from the source XML value structure.

Field Requirement Format Unit Exponent Notes
Body Composition FeatureMandatory32bit---

Bit Map

Bit-level enumerations extracted from the XML BitField definition.

Field Bit Size Name 0 Means 1 Means
Body Composition Feature01Time Stamp SupportedFalseTrue
Body Composition Feature11Multiple Users SupportedFalseTrue
Body Composition Feature21Basal Metabolism SupportedFalseTrue
Body Composition Feature31Muscle Percentage SupportedFalseTrue
Body Composition Feature41Muscle Mass SupportedFalseTrue
Body Composition Feature51Fat Free Mass SupportedFalseTrue
Body Composition Feature61Soft Lean Mass SupportedFalseTrue
Body Composition Feature71Body Water Mass SupportedFalseTrue
Body Composition Feature81Impedance SupportedFalseTrue
Body Composition Feature91Weight SupportedFalseTrue
Body Composition Feature101Height SupportedFalseTrue
Body Composition Feature114Mass Measurement ResolutionNot SpecifiedResolution of 0.5 kg or 1 lb
Body Composition Feature153Height Measurement ResolutionNot SpecifiedResolution of 0.01 meter or 1 inch

Byte Layout and Decode

Payload length is 4 bytes.

function decodePayload(dataView, offset = 0) {
  // Parse body_composition_feature (32bit) according to Bluetooth format rules.
  return { body_composition_feature };
}

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 Body Composition Feature in Bluetooth GATT?

Body Composition Feature is defined as a Bluetooth GATT characteristic entry with type org.bluetooth.characteristic.body_composition_feature and UUID 0x2A9B.

What UUID identifies Body Composition Feature?

The UUID for Body Composition Feature is 0x2A9B.

How should I parse Body Composition Feature?

Payload length is 4 bytes.

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.