Skip to content
Vehicle properties
Displays & HMI

CLUSTER_HEARTBEAT

What it is

Sends the heartbeat signal to ClusterOS.

int64[0]: epochTimeNs int64[1]: the visibility of ClusterUI, 0 - invisible, 1 - visible bytes: the app specific metadata, this can be empty when ClusterHomeService use the heartbeat to deliver the change of the visibility.

How the ID is built

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

FieldMaskValueMeans
Group0xf00000000x10000000SYSTEM
Area0x0f0000000x01000000GLOBAL
Type0x00ff00000x00e00000MIXED
Ordinal0x0000ffff0x00000f4b0xf4b

Reading it from an app

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

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

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