Skip to content
Vehicle properties
HVAC & climate

HVAC_TEMPERATURE_CURRENT

What it is

HVAC current temperature.

How the ID is built

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

FieldMaskValueMeans
Group0xf00000000x10000000SYSTEM
Area0x0f0000000x05000000SEAT
Type0x00ff00000x00600000FLOAT
Ordinal0x0000ffff0x000005020x502

Reading it from an app

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

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

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