Starting work on the Climate Profiles
All checks were successful
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Successful in 23s

This commit is contained in:
2025-05-29 13:45:14 -04:00
parent ed2495ee5c
commit d642b957d8
2 changed files with 8 additions and 7 deletions

View File

@ -356,9 +356,8 @@ func (c *Client) GetVehicles() []*Vehicle {
}
vehicle.GetVehicleStatus()
vehicle.GetVehicleCondition()
// TODO: Temporary disabled for getting successful testing results
// vehicle.GetClimatePresets()
// vehicle.GetClimateUserPresets()
vehicle.GetClimatePresets()
vehicle.GetClimateUserPresets()
vehicles = append(vehicles, vehicle)
}
@ -410,9 +409,8 @@ func (c *Client) GetVehicleByVIN(vin string) *Vehicle {
vehicle.ClimateProfiles = make(map[string]ClimateProfile)
vehicle.GetVehicleStatus()
vehicle.GetVehicleCondition()
// TODO: Temporary disabled for getting successful testing results
// vehicle.GetClimatePresets()
// vehicle.GetClimateUserPresets()
vehicle.GetClimatePresets()
vehicle.GetClimateUserPresets()
}
return vehicle