Skip to content

Commit

Permalink
Add additional VehicleViewDirection
Browse files Browse the repository at this point in the history
  • Loading branch information
rikroe committed Nov 3, 2024
1 parent eb06aea commit a04f55b
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions bimmer_connected/vehicle/vehicle.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,16 @@ class VehicleViewDirection(StrEnum):

FRONTSIDE = "VehicleStatus"
FRONT = "FrontView"
# REARSIDE = 'REARSIDE'
# REAR = 'REAR'
SIDE = "SideViewLeft"
# DASHBOARD = 'DASHBOARD'
# DRIVERDOOR = 'DRIVERDOOR'
# REARBIRDSEYE = 'REARBIRDSEYE'
DASHBOARD = "Dashboard"
DRIVERDOOR = "Driverdoor"
ANGLE_SIDE_VIEW_FORTY = "AngleSideViewForty"
ANGLE_SIDE_VIEW_SIXTY = "AngleSideViewSixty"
FRONT_LEFT = "FrontLeft"
FRONT_RIGHT = "FrontRight"
REAR_LEFT = "RearLeft"
REAR_RIGHT = "RearRight"
REAR_VIEW = "RearView"
UNKNOWN = "UNKNOWN"


Expand Down

0 comments on commit a04f55b

Please sign in to comment.