forked from jsgoecke/tesla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commands.go
248 lines (218 loc) · 7.77 KB
/
commands.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
package tesla
import (
"encoding/json"
"errors"
"strconv"
)
// Response from the Tesla API after POSTing a command
type CommandResponse struct {
Response struct {
Reason string `json:"reason"`
Result bool `json:"result"`
} `json:"response"`
}
// Required elements to POST an Autopark/Summon request
// for the vehicle
type AutoParkRequest struct {
VehicleID int `json:"vehicle_id,omitempty"`
Lat float64 `json:"lat"`
Lon float64 `json:"lon"`
Action string `json:"action,omitempty"`
}
// Causes the vehicle to abort the Autopark request
func (v Vehicle) AutoparkAbort() error {
return v.autoPark("abort")
}
// Causes the vehicle to pull forward
func (v Vehicle) AutoparkForward() error {
return v.autoPark("start_forward")
}
// Causes the vehicle to go in reverse
func (v Vehicle) AutoparkReverse() error {
return v.autoPark("start_reverse")
}
// Performs the actual auto park/summon request for the vehicle
func (v Vehicle) autoPark(action string) error {
apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/autopark_request"
driveState, _ := v.DriveState()
autoParkRequest := &AutoParkRequest{
VehicleID: v.VehicleID,
Lat: driveState.Latitude,
Lon: driveState.Longitude,
Action: action,
}
body, _ := json.Marshal(autoParkRequest)
_, err := sendCommand(apiUrl, body)
return err
}
// TBD based on Github issue #7
// Toggles defrost on and off, locations values are 'front' or 'rear'
// func (v Vehicle) Defrost(location string, state bool) error {
// command := location + "_defrost_"
// if state {
// command += "on"
// } else {
// command += "off"
// }
// apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/" + command
// fmt.Println(apiUrl)
// _, err := sendCommand(apiUrl, nil)
// return err
// }
// Opens and closes the configured Homelink garage door of the vehicle
// keep in mind this is a toggle and the garage door state is unknown
// a major limitation of Homelink
func (v Vehicle) TriggerHomelink() error {
apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/trigger_homelink"
driveState, _ := v.DriveState()
autoParkRequest := &AutoParkRequest{
Lat: driveState.Latitude,
Lon: driveState.Longitude,
}
body, _ := json.Marshal(autoParkRequest)
_, err := sendCommand(apiUrl, body)
return err
}
// Wakes up the vehicle when it is powered off
func (v Vehicle) Wakeup() (*Vehicle, error) {
apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/wake_up"
body, err := sendCommand(apiUrl, nil)
if err != nil {
return nil, err
}
vehicleResponse := &VehicleResponse{}
err = json.Unmarshal(body, vehicleResponse)
if err != nil {
return nil, err
}
return vehicleResponse.Response, nil
}
// Opens the charge port so you may insert your charging cable
func (v Vehicle) OpenChargePort() error {
apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/charge_port_door_open"
_, err := sendCommand(apiUrl, nil)
return err
}
// Resets the PIN set for valet mode, if set
func (v Vehicle) ResetValetPIN() error {
apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/reset_valet_pin"
_, err := sendCommand(apiUrl, nil)
return err
}
// Sets the charge limit to the standard setting
func (v Vehicle) SetChargeLimitStandard() error {
apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/charge_standard"
_, err := sendCommand(apiUrl, nil)
return err
}
// Sets the charge limit to the max limit
func (v Vehicle) SetChargeLimitMax() error {
apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/charge_max_range"
_, err := sendCommand(apiUrl, nil)
return err
}
// Set the charge limit to a custom percentage
func (v Vehicle) SetChargeLimit(percent int) error {
apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/set_charge_limit"
theJson := `{"percent": ` + strconv.Itoa(percent) + `}`
_, err := ActiveClient.post(apiUrl, []byte(theJson))
return err
}
// Starts the charging of the vehicle after you have inserted the
// charging cable
func (v Vehicle) StartCharging() error {
apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/charge_start"
_, err := sendCommand(apiUrl, nil)
return err
}
// Stop the charging of the vehicle
func (v Vehicle) StopCharging() error {
apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/charge_stop"
_, err := sendCommand(apiUrl, nil)
return err
}
// Flashes the lights of the vehicle
func (v Vehicle) FlashLights() error {
apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/flash_lights"
_, err := sendCommand(apiUrl, nil)
return err
}
// Honks the horn of the vehicle
func (v *Vehicle) HonkHorn() error {
apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/honk_horn"
_, err := sendCommand(apiUrl, nil)
return err
}
// Unlock the car's doors
func (v Vehicle) UnlockDoors() error {
apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/door_unlock"
_, err := sendCommand(apiUrl, nil)
return err
}
// Locks the doors of the vehicle
func (v Vehicle) LockDoors() error {
apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/door_lock"
_, err := sendCommand(apiUrl, nil)
return err
}
// Sets the temprature of the vehicle, where you may set the driver
// zone and the passenger zone to seperate temperatures
func (v Vehicle) SetTemprature(driver float64, passenger float64) error {
driveTemp := strconv.FormatFloat(driver, 'f', -1, 32)
passengerTemp := strconv.FormatFloat(passenger, 'f', -1, 32)
apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/set_temps?driver_temp=" + driveTemp + "&passenger_temp=" + passengerTemp
_, err := ActiveClient.post(apiUrl, nil)
return err
}
// Starts the air conditioning in the car
func (v Vehicle) StartAirConditioning() error {
url := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/auto_conditioning_start"
_, err := sendCommand(url, nil)
return err
}
// Stops the air conditioning in the car
func (v Vehicle) StopAirConditioning() error {
apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/auto_conditioning_stop"
_, err := sendCommand(apiUrl, nil)
return err
}
// The desired state of the panoramic roof. The approximate percent open
// values for each state are open = 100%, close = 0%, comfort = 80%, vent = %15, move = set %
func (v Vehicle) MovePanoRoof(state string, percent int) error {
apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/sun_roof_control"
theJson := `{"state": "` + state + `", "percent":` + strconv.Itoa(percent) + `}`
_, err := ActiveClient.post(apiUrl, []byte(theJson))
return err
}
// Starts the car by turning it on, requires the password to be sent
// again
func (v Vehicle) Start(password string) error {
apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/remote_start_drive?password=" + password
_, err := sendCommand(apiUrl, nil)
return err
}
// Opens the trunk, where values may be 'front' or 'rear'
func (v Vehicle) OpenTrunk(trunk string) error {
apiUrl := BaseURL + "/vehicles/" + strconv.FormatInt(v.ID, 10) + "/command/trunk_open" // ?which_trunk=" + trunk
theJson := `{"which_trunk": "` + trunk + `"}`
_, err := ActiveClient.post(apiUrl, []byte(theJson))
return err
}
// Sends a command to the vehicle
func sendCommand(url string, reqBody []byte) ([]byte, error) {
body, err := ActiveClient.post(url, reqBody)
if err != nil {
return nil, err
}
if len(body) > 0 {
response := &CommandResponse{}
err = json.Unmarshal(body, response)
if err != nil {
return nil, err
}
if response.Response.Result != true && response.Response.Reason != "" {
return nil, errors.New(response.Response.Reason)
}
}
return body, nil
}