View Source PorscheConnEx.Struct.Status.LockStatus (porsche_conn_ex v0.1.0)

Structure describing the open/closed and locked/unlocked status of a vehicle door.

Fields

  • open? (boolean) — whether the door is physically open
  • locked? (boolean) — whether the door is locked to prevent it opening

Note that while the vehicle hood also uses this structure, it is always considered unlocked, and is not counted in the overall locked/unlocked state of the vehicle.

Summary

Types

@type t() :: %PorscheConnEx.Struct.Status.LockStatus{
  locked?: boolean(),
  open?: boolean()
}