More Changes
All checks were successful
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Successful in 25s

This commit is contained in:
2025-06-03 19:29:51 -04:00
parent 1419634fdb
commit 24bb305f65
2 changed files with 10 additions and 4 deletions

View File

@ -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{

View File

@ -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
}