Skip to content
Vehicle properties
HVAC & climate

HVAC_ACTUAL_FAN_SPEED_RPM

What it is

Actual fan speed

How the ID is built

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

FieldMaskValueMeans
Group0xf00000000x10000000SYSTEM
Area0x0f0000000x05000000SEAT
Type0x00ff00000x00400000INT32
Ordinal0x0000ffff0x0000050f0x50f

Reading it from an app

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

int value =
        mgr.getIntProperty(VehiclePropertyIds.HVAC_ACTUAL_FAN_SPEED_RPM, areaId);

This property is read-only — writes are rejected. It fires a callback whenever the value changes.