Reverted back int to string
All checks were successful
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Successful in 22s
All checks were successful
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Successful in 22s
This commit is contained in:
16
mysubaru.go
16
mysubaru.go
@ -159,14 +159,14 @@ type VehicleStatus struct {
|
|||||||
AvgFuelConsumptionMpg float64 `json:"avgFuelConsumptionMpg"` // + 18.4
|
AvgFuelConsumptionMpg float64 `json:"avgFuelConsumptionMpg"` // + 18.4
|
||||||
AvgFuelConsumptionLitersPer100Kilometers float64 `json:"avgFuelConsumptionLitersPer100Kilometers"` // + 12.8
|
AvgFuelConsumptionLitersPer100Kilometers float64 `json:"avgFuelConsumptionLitersPer100Kilometers"` // + 12.8
|
||||||
RemainingFuelPercent int `json:"remainingFuelPercent"` // + 82
|
RemainingFuelPercent int `json:"remainingFuelPercent"` // + 82
|
||||||
TirePressureFrontLeft int `json:"tirePressureFrontLeft"` // + "2275"
|
TirePressureFrontLeft string `json:"tirePressureFrontLeft"` // + "2275"
|
||||||
TirePressureFrontRight int `json:"tirePressureFrontRight"` // + "2344"
|
TirePressureFrontRight string `json:"tirePressureFrontRight"` // + "2344"
|
||||||
TirePressureRearLeft int `json:"tirePressureRearLeft"` // + "2413"
|
TirePressureRearLeft string `json:"tirePressureRearLeft"` // + "2413"
|
||||||
TirePressureRearRight int `json:"tirePressureRearRight"` // + "2344"
|
TirePressureRearRight string `json:"tirePressureRearRight"` // + "2344"
|
||||||
TirePressureFrontLeftPsi int `json:"tirePressureFrontLeftPsi"` // + "33"
|
TirePressureFrontLeftPsi string `json:"tirePressureFrontLeftPsi"` // + "33"
|
||||||
TirePressureFrontRightPsi int `json:"tirePressureFrontRightPsi"` // + "34"
|
TirePressureFrontRightPsi string `json:"tirePressureFrontRightPsi"` // + "34"
|
||||||
TirePressureRearLeftPsi int `json:"tirePressureRearLeftPsi"` // + "35"
|
TirePressureRearLeftPsi string `json:"tirePressureRearLeftPsi"` // + "35"
|
||||||
TirePressureRearRightPsi int `json:"tirePressureRearRightPsi"` // + "34"
|
TirePressureRearRightPsi string `json:"tirePressureRearRightPsi"` // + "34"
|
||||||
TyreStatusFrontLeft string `json:"tyreStatusFrontLeft"` // + "UNKNOWN"
|
TyreStatusFrontLeft string `json:"tyreStatusFrontLeft"` // + "UNKNOWN"
|
||||||
TyreStatusFrontRight string `json:"tyreStatusFrontRight"` // + "UNKNOWN"
|
TyreStatusFrontRight string `json:"tyreStatusFrontRight"` // + "UNKNOWN"
|
||||||
TyreStatusRearLeft string `json:"tyreStatusRearLeft"` // + "UNKNOWN"
|
TyreStatusRearLeft string `json:"tyreStatusRearLeft"` // + "UNKNOWN"
|
||||||
|
Reference in New Issue
Block a user