VelocAI logo Bluetooth Explorer Documentation

Bluetooth GATT Characteristic Reference

LN Feature (0x2A6A)

org.bluetooth.characteristic.ln_feature

The LN Feature characteristic is used to report a list of features supported by the device.

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
NameLN Feature
UUID0x2A6A
Typeorg.bluetooth.characteristic.ln_feature
XML RootCharacteristic
Source Fileorg.bluetooth.characteristic.ln_feature.xml
Field Count1

Field Specification

Parsed field definitions from the source XML value structure.

Field Requirement Format Unit Exponent Notes
LN FeatureMandatory32bit---

Bit Map

Bit-level enumerations extracted from the XML BitField definition.

Field Bit Size Name 0 Means 1 Means
LN Feature01Instantaneous Speed SupportedFalseTrue
LN Feature11Total Distance SupportedFalseTrue
LN Feature21Location SupportedFalseTrue
LN Feature31Elevation SupportedFalseTrue
LN Feature41Heading SupportedFalseTrue
LN Feature51Rolling Time SupportedFalseTrue
LN Feature61UTC Time SupportedFalseTrue
LN Feature71Remaining Distance SupportedFalseTrue
LN Feature81Remaining Vertical Distance SupportedFalseTrue
LN Feature91Estimated Time of Arrival SupportedFalseTrue
LN Feature101Number of Beacons in Solution SupportedFalseTrue
LN Feature111Number of Beacons in View SupportedFalseTrue
LN Feature121Time to First Fix SupportedFalseTrue
LN Feature131Estimated Horizontal Position Error SupportedFalseTrue
LN Feature141Estimated Vertical Position Error SupportedFalseTrue
LN Feature151Horizontal Dilution of Precision SupportedFalseTrue
LN Feature161Vertical Dilution of Precision SupportedFalseTrue
LN Feature171Location and Speed Characteristic Content Masking SupportedFalseTrue
LN Feature181Fix Rate Setting SupportedFalseTrue
LN Feature191Elevation Setting SupportedFalseTrue
LN Feature201Position Status SupportedFalseTrue

Byte Layout and Decode

Payload length is 4 bytes.

function decodePayload(dataView, offset = 0) {
  // Parse ln_feature (32bit) according to Bluetooth format rules.
  return { ln_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 LN Feature in Bluetooth GATT?

LN Feature is defined as a Bluetooth GATT characteristic entry with type org.bluetooth.characteristic.ln_feature and UUID 0x2A6A.

What UUID identifies LN Feature?

The UUID for LN Feature is 0x2A6A.

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