Skip to content
Vehicle properties
Seats

SEAT_MEMORY_SET

What it is

Seat memory set

This setting allows the user to save the current seat position settings into the selected preset slot. The maxInt32Value and minInt32Value in VehicleAreaConfig must be defined. The minInt32Value must be 0, and the maxInt32Value for each seat position must match the maxInt32Value for SEAT_MEMORY_SELECT.

How the ID is built

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

FieldMaskValueMeans
Group0xf00000000x10000000SYSTEM
Area0x0f0000000x05000000SEAT
Type0x00ff00000x00400000INT32
Ordinal0x0000ffff0x00000b810xb81

Reading it from an app

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

mgr.setProperty(Integer.class,
        VehiclePropertyIds.SEAT_MEMORY_SET, areaId, value);

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