Changed tires pressure psi from string to int
All checks were successful
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Successful in 23s

This commit is contained in:
2025-05-29 00:31:40 -04:00
parent 55f1960faa
commit 59ee34b899

View File

@ -159,14 +159,14 @@ type VehicleStatus struct {
AvgFuelConsumptionMpg float64 `json:"avgFuelConsumptionMpg"` // + 18.4
AvgFuelConsumptionLitersPer100Kilometers float64 `json:"avgFuelConsumptionLitersPer100Kilometers"` // + 12.8
RemainingFuelPercent int `json:"remainingFuelPercent"` // + 82
TirePressureFrontLeft string `json:"tirePressureFrontLeft"` // + "2275"
TirePressureFrontRight string `json:"tirePressureFrontRight"` // + "2344"
TirePressureRearLeft string `json:"tirePressureRearLeft"` // + "2413"
TirePressureRearRight string `json:"tirePressureRearRight"` // + "2344"
TirePressureFrontLeftPsi string `json:"tirePressureFrontLeftPsi"` // + "33"
TirePressureFrontRightPsi string `json:"tirePressureFrontRightPsi"` // + "34"
TirePressureRearLeftPsi string `json:"tirePressureRearLeftPsi"` // + "35"
TirePressureRearRightPsi string `json:"tirePressureRearRightPsi"` // + "34"
TirePressureFrontLeft int `json:"tirePressureFrontLeft"` // + "2275"
TirePressureFrontRight int `json:"tirePressureFrontRight"` // + "2344"
TirePressureRearLeft int `json:"tirePressureRearLeft"` // + "2413"
TirePressureRearRight int `json:"tirePressureRearRight"` // + "2344"
TirePressureFrontLeftPsi int `json:"tirePressureFrontLeftPsi"` // + "33"
TirePressureFrontRightPsi int `json:"tirePressureFrontRightPsi"` // + "34"
TirePressureRearLeftPsi int `json:"tirePressureRearLeftPsi"` // + "35"
TirePressureRearRightPsi int `json:"tirePressureRearRightPsi"` // + "34"
TyreStatusFrontLeft string `json:"tyreStatusFrontLeft"` // + "UNKNOWN"
TyreStatusFrontRight string `json:"tyreStatusFrontRight"` // + "UNKNOWN"
TyreStatusRearLeft string `json:"tyreStatusRearLeft"` // + "UNKNOWN"