Skip to content
Vehicle properties
Vehicle information

INFO_EV_CONNECTOR_TYPE

What it is

List of connectors this EV may use

If the vehicle has multiple charging ports, this property must return all possible connector types that can be used by at least one charging port on the vehicle.

How the ID is built

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

FieldMaskValueMeans
Group0xf00000000x10000000SYSTEM
Area0x0f0000000x01000000GLOBAL
Type0x00ff00000x00410000INT32_VEC
Ordinal0x0000ffff0x000001070x107

Reading it from an app

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

CarPropertyValue<Integer> value =
        mgr.getProperty(VehiclePropertyIds.INFO_EV_CONNECTOR_TYPE, 0);

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