Skip to content
Vehicle properties
Displays & HMI

CLUSTER_NAVIGATION_STATE

What it is

Informs the current navigation state.

bytes: the serialized message of NavigationStateProto.

How the ID is built

A property ID is a 32-bit value packing four fields. Reading 0x11700f38 apart:

FieldMaskValueMeans
Group0xf00000000x10000000SYSTEM
Area0x0f0000000x01000000GLOBAL
Type0x00ff00000x00700000BYTES
Ordinal0x0000ffff0x00000f380xf38

Reading it from an app

CarPropertyManager mgr = (CarPropertyManager)
        car.getCarManager(Car.PROPERTY_SERVICE);

mgr.setProperty(Object.class,
        VehiclePropertyIds.CLUSTER_NAVIGATION_STATE, 0, value);

This property is write-only — it cannot be read back. It fires a callback whenever the value changes.