From 24bb305f659ebdf54509faf18790888badf27044 Mon Sep 17 00:00:00 2001 From: Alex Savin Date: Tue, 3 Jun 2025 19:29:51 -0400 Subject: [PATCH] More Changes --- consts.go | 8 +++++++- vehicle.go | 6 +++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/consts.go b/consts.go index 5aec256..113383d 100644 --- a/consts.go +++ b/consts.go @@ -119,7 +119,7 @@ var features = map[string]string{ "g1": "Generation #1", "g2": "Generation #2", "g3": "Generation #3", - "BDS": "Blind-Spot Detection", + "BSD": "Blind-Spot Detection", "RHSF": "Rear High-Speed Function / Reverse Automatic Braking / Rear Cross-Traffic Alert", "11.6MMAN": "11.6-inch Infotainment System", "EYESIGHT": "EyeSight Exclusive Advanced Driver-Assist System", @@ -129,9 +129,15 @@ var features = map[string]string{ "PANPM-DG2G": "Panoramic Moonroof", "PHEV": "Electric Vehicle", "RES": "Remote Start", + "REARBRK": "Reverse Auto Braking", "TIF_35": "Tire Pressure Front 35", "TIR_33": "Tire Pressure Rear 35", "VALET": "Valet Parking", + "RES_HVAC_HFS": "Heated Front Seats", + "RES_HVAC_VFS": "Vented Front Seats", + "RESCC": "Remote Engine Start with Climate Control", + "RCC": "Remote Climate Control", + "ACCS": "Adaptive Cruise Control", } var troubles = map[string]string{ diff --git a/vehicle.go b/vehicle.go index 4661f5e..39728ae 100644 --- a/vehicle.go +++ b/vehicle.go @@ -132,8 +132,8 @@ type GeoLocation struct { type Door struct { Position string // front | rear | boot | enginehood SubPosition string // right | left - Status string // CLOSED | - Lock string // LOCKED | + Status string // CLOSED | OPEN + Lock string // LOCKED | UNLOCKED Updated time.Time } @@ -141,7 +141,7 @@ type Door struct { type Window struct { Position string SubPosition string - Status string + Status string // CLOSE | VENTED | OPEN Updated time.Time }