Skip to content
Vehicle properties
Tyres, brakes & chassis

CRITICALLY_LOW_TIRE_PRESSURE

What it is

Critically low tire pressure

This property indicates the critically low pressure threshold for each tire. It indicates when it is time for tires to be replaced or fixed. The value must be less than or equal to minFloatValue in TIRE_PRESSURE. Minimum and maximum property values (that is, minFloatValue, maxFloatValue) are not applicable to this property.

How the ID is built

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

FieldMaskValueMeans
Group0xf00000000x10000000SYSTEM
Area0x0f0000000x07000000WHEEL
Type0x00ff00000x00600000FLOAT
Ordinal0x0000ffff0x0000030a0x30a

Reading it from an app

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

float value =
        mgr.getFloatProperty(VehiclePropertyIds.CRITICALLY_LOW_TIRE_PRESSURE, areaId);

This property is read-only — writes are rejected. It is static for the life of the vehicle, so read it once and cache it.