Fixed bugs with Climate
This commit is contained in:
16
main.go
16
main.go
@ -5,7 +5,6 @@ import (
|
||||
"os"
|
||||
"strconv"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/bogosj/tesla"
|
||||
"github.com/therecipe/qt/widgets"
|
||||
@ -274,16 +273,17 @@ func enableClimate(i int) {
|
||||
if err != nil {
|
||||
showDialogue("Unable to parse temp setting\n%+v", err)
|
||||
}
|
||||
if guiSettings.GuiTemperatureUnits == "F" {
|
||||
temp = (temp - 32) * 5 / 9
|
||||
}
|
||||
if i == 0 {
|
||||
vehicle.StopAirConditioning()
|
||||
} else {
|
||||
vehicle.SetTemperature(temp, temp)
|
||||
vehicle.StartAirConditioning()
|
||||
}
|
||||
go func() {
|
||||
time.Sleep(1 * time.Minute)
|
||||
setValues()
|
||||
}()
|
||||
|
||||
go setValues()
|
||||
}
|
||||
|
||||
func lockDoors(i int) {
|
||||
@ -296,11 +296,7 @@ func lockDoors(i int) {
|
||||
}
|
||||
|
||||
func sentryModeEnable(i int) {
|
||||
if i == 0 {
|
||||
showDialogue("Unable to disable sentry mode.\nUnsupported.")
|
||||
} else {
|
||||
vehicle.EnableSentry()
|
||||
}
|
||||
vehicle.EnableSentry()
|
||||
go setValues()
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user