-
Notifications
You must be signed in to change notification settings - Fork 84
/
menu.py
351 lines (340 loc) · 16 KB
/
menu.py
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
""" Tesla API menu-based console application using TeslaPy module """
# Author: Tim Dorssers
from __future__ import print_function
import ssl
import logging
import argparse
import geopy.geocoders # 1.14.0 or higher required
from geopy.geocoders import Nominatim
from geopy.exc import *
try:
import webview # Optional pywebview 3.0 or higher
except ImportError:
webview = None
try:
from selenium import webdriver # Optional selenium 3.13.0 or higher
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.ui import WebDriverWait
except ImportError:
webdriver = None
from teslapy import Tesla
raw_input = vars(__builtins__).get('raw_input', input) # Py2/3 compatibility
def heading_to_str(deg):
return ['NNE', 'NE', 'ENE', 'E', 'ESE', 'SE', 'SSE', 'S', 'SSW', 'SW', 'WSW',
'W', 'WNW', 'NW', 'NNW', 'N'][int(abs((deg - 11.25) % 360) / 22.5)]
def show_vehicle_data(vehicle):
cl = vehicle['climate_state']
ve = vehicle['vehicle_state']
dr = vehicle['drive_state']
ch = vehicle['charge_state']
co = vehicle['vehicle_config']
# Lookup address at coordinates
coords = '%s, %s' % (dr['latitude'], dr['longitude'])
try:
osm = Nominatim(user_agent='TeslaPy', proxies=vehicle.tesla.proxies)
location = osm.reverse(coords).address
except (GeocoderTimedOut, GeocoderUnavailable) as e:
logging.error(e)
location = coords
# Climate state
fmt = 'Outside Temperature: {:17} Inside Temperature: {}'
print(fmt.format(vehicle.temp_units(cl['outside_temp']),
vehicle.temp_units(cl['inside_temp'])))
fmt = 'Driver Temperature Setting: {:10} Passenger Temperature Setting: {}'
print(fmt.format(vehicle.temp_units(cl['driver_temp_setting']),
vehicle.temp_units(cl['passenger_temp_setting'])))
fmt = 'Is Climate On: {:23} Fan Speed: {}'
print(fmt.format(str(cl['is_climate_on']), cl['fan_status']))
fmt = 'Driver Seat Heater: {:18} Passenger Seat Heater: {}'
print(fmt.format(str(cl['seat_heater_left']), str(cl['seat_heater_right'])))
fmt = 'Is Front Defroster On: {:15} Is Rear Defroster On: {}'
print(fmt.format(str(cl['is_front_defroster_on']),
str(cl['is_rear_defroster_on'])))
print('-' * 80)
# Vehicle state
fmt = 'Vehicle Name: {:24} Odometer: {}'
print(fmt.format(str(ve['vehicle_name']), vehicle.dist_units(ve['odometer'])))
fmt = 'Car Version: {:25} Locked: {}'
print(fmt.format(ve['car_version'], ve['locked']))
door = {0: 'Closed', 1: 'Open'}
fmt = 'Driver/Pass Front Door: {:14} Driver/Pass Rear Door: {}/{}'
print(fmt.format('%s/%s' % (door.get(ve['df']), door.get(ve['pf'])),
door.get(ve['dr']), door.get(ve['pr'])))
window = {0: 'Closed', 1: 'Venting', 2: 'Open'}
fmt = 'Drvr/Pass Front Window: {:14} Driver/Pass Rear Window: {}/{}'
print(fmt.format('%s/%s' % (window.get(ve.get('fd_window')),
window.get(ve.get('fp_window'))),
window.get(ve.get('rd_window')),
window.get(ve.get('rp_window'))))
fmt = 'Front Trunk: {:25} Rear Trunk: {}'
print(fmt.format(door.get(ve['ft']), door.get(ve['rt'])))
fmt = 'Remote Start: {:24} Is User Present: {}'
print(fmt.format(str(ve['remote_start']), str(ve['is_user_present'])))
fmt = 'Speed Limit Mode: {:20} Current Limit: {}'
limit = vehicle.dist_units(ve['speed_limit_mode']['current_limit_mph'], True)
print(fmt.format(str(ve['speed_limit_mode']['active']), limit))
fmt = 'Speed Limit Pin Set: {:17} Sentry Mode: {}'
print(fmt.format(str(ve['speed_limit_mode']['pin_code_set']),
str(ve.get('sentry_mode'))))
fmt = 'Valet Mode: {:26} Valet Pin Set: {}'
print(fmt.format(str(ve['valet_mode']), str(not 'valet_pin_needed' in ve)))
print('-' * 80)
# Drive state
speed = 0 if dr['speed'] is None else dr['speed']
fmt = 'Power: {:31} Speed: {}'
print(fmt.format(str(dr['power']) + ' kW', vehicle.dist_units(speed, True)))
fmt = 'Shift State: {:25} Heading: {}'
print(fmt.format(str(dr['shift_state']), heading_to_str(dr['heading'])))
print(u'GPS: {:.75}'.format(location))
print('-' * 80)
# Charging state
fmt = 'Charging State: {:22} Time To Full Charge: {:02.0f}:{:02.0f}'
print(fmt.format(ch['charging_state'],
*divmod(ch['time_to_full_charge'] * 60, 60)))
phases = '3 x ' if ch['charger_phases'] == 2 else ''
fmt = 'Charger Voltage: {:21} Charger Actual Current: {}{:d} A'
print(fmt.format(str(ch['charger_voltage']) + ' V',
phases, ch['charger_actual_current']))
fmt = 'Charger Power: {:23} Charge Rate: {}'
print(fmt.format(str(ch['charger_power']) + ' kW',
vehicle.dist_units(ch['charge_rate'], True)))
fmt = 'Battery Level: {:23} Battery Range: {}'
print(fmt.format(str(ch['battery_level']) + ' %',
vehicle.dist_units(ch['battery_range'])))
fmt = 'Charge Energy Added: {:17} Charge Range Added: {}'
print(fmt.format(str(ch['charge_energy_added']) + ' kWh',
vehicle.dist_units(ch['charge_miles_added_rated'])))
fmt = 'Charge Limit SOC: {:20} Estimated Battery Range: {}'
print(fmt.format(str(ch['charge_limit_soc']) + ' %',
vehicle.dist_units(ch['est_battery_range'])))
fmt = 'Charge Port Door Open: {:15} Charge Port Latch: {}'
print(fmt.format(str(ch['charge_port_door_open']),
str(ch['charge_port_latch'])))
print('-' * 80)
# Vehicle config
fmt = 'Car Type: {:28} Exterior Color: {}'
print(fmt.format(co['car_type'], co['exterior_color']))
fmt = 'Wheel Type: {:26} Spoiler Type: {}'
print(fmt.format(co['wheel_type'], co['spoiler_type']))
fmt = 'Roof Color: {:26} Charge Port Type: {}'
print(fmt.format(co['roof_color'], co['charge_port_type']))
def show_charging_sites(vehicle):
sites = vehicle.get_nearby_charging_sites()
print('Destination Charging:')
fmt = '{:57} {}'
for site in sites['destination_charging']:
print(fmt.format(site['name'],
vehicle.dist_units(site['distance_miles'])))
print('-' * 80)
print('Superchargers:')
fmt = '{:57} {} {}/{} stalls'
for site in sites['superchargers']:
print(fmt.format(site['name'],
vehicle.dist_units(site['distance_miles']),
site['available_stalls'], site['total_stalls']))
def show_charging_history(data):
print(data['screen_title'])
print('-' * 80)
print('%s\t%s %s' % (data['total_charged']['title'],
data['total_charged']['value'],
data['total_charged']['after_adornment']))
print('-' * 80)
for point in data['charging_history_graph']['data_points']:
if point['values'][0].get('raw_value', 0) <= 0:
continue
print('%s\t%s %s\t%s' % (point['timestamp']['display_string'],
point['values'][0]['value'],
point['values'][0]['after_adornment'],
point['values'][0]['sub_title']))
print('-' * 80)
for item in data['total_charged_breakdown'].values():
print('%s %s %s' % (item['value'], item['after_adornment'],
item['sub_title']))
def menu(vehicle):
lst = ['Refresh', 'Charging history', 'Wake up', 'Nearby charging sites',
'Honk horn', 'Flash lights', 'Lock/unlock', 'Climate on/off',
'Set temperature', 'Actuate frunk/trunk', 'Remote start drive',
'Set charge limit', 'Open/close charge port', 'Start/stop charge',
'Seat heater request', 'Toggle media playback', 'Window control',
'Max defrost', 'Set charging amps']
opt = 0
while True:
if vehicle['state'] == 'online':
if vehicle['in_service']:
print('Vehicle is in service')
print('-' * 80)
elif not vehicle.mobile_enabled():
print('Mobile access is not enabled for this vehicle')
print('-' * 80)
break
# Display vehicle info, except after charging history/sites
if opt != 2 and opt != 4:
show_vehicle_data(vehicle.get_vehicle_data())
else:
print('Wake up vehicle to use remote functions/telemetry')
print('-' * 80)
# Display 3 column menu
for i, option in enumerate(lst, 1):
print('{:2} {:23}'.format(i, option), end='' if i % 3 else '\n')
if i % 3:
print()
print('-' * 80)
# Get user choice
opt = int(raw_input("Choice (0 to quit): "))
print('-' * 80)
# Check if vehicle is still online, otherwise force refresh
if opt > 3:
vehicle.get_vehicle_summary()
if vehicle['state'] != 'online' or vehicle['in_service']:
opt = 1
# Perform menu option
if opt == 0:
break
if opt == 1:
pass
elif opt == 2:
show_charging_history(vehicle.get_charge_history())
elif opt == 3:
print('Please wait...')
vehicle.sync_wake_up()
print('-' * 80)
elif opt == 4:
show_charging_sites(vehicle)
elif opt == 5:
vehicle.command('HONK_HORN')
elif opt == 6:
vehicle.command('FLASH_LIGHTS')
elif opt == 7:
if vehicle['vehicle_state']['locked']:
vehicle.command('UNLOCK')
else:
vehicle.command('LOCK')
elif opt == 8:
if vehicle['climate_state']['is_climate_on']:
vehicle.command('CLIMATE_OFF')
else:
vehicle.command('CLIMATE_ON')
elif opt == 9:
temp = float(raw_input("Enter temperature: "))
vehicle.command('CHANGE_CLIMATE_TEMPERATURE_SETTING', driver_temp=temp,
passenger_temp=temp)
elif opt == 10:
which_trunk = raw_input("Which trunk (front/rear):")
vehicle.command('ACTUATE_TRUNK', which_trunk=which_trunk)
elif opt == 11:
vehicle.command('REMOTE_START')
elif opt == 12:
limit = int(raw_input("Enter charge limit: "))
vehicle.command('CHANGE_CHARGE_LIMIT', percent=limit)
elif opt == 13:
if vehicle['charge_state']['charge_port_door_open']:
vehicle.command('CHARGE_PORT_DOOR_CLOSE')
else:
vehicle.command('CHARGE_PORT_DOOR_OPEN')
elif opt == 14:
if vehicle['charge_state']['charging_state'].lower() == 'charging':
vehicle.command('STOP_CHARGE')
else:
vehicle.command('START_CHARGE')
elif opt == 15:
heater = int(raw_input("Enter heater (0=Driver,1=Passenger,"
"2=Rear left,3=Rear center,4=Rear right): "))
level = int(raw_input("Enter level (0..3): "))
vehicle.command('REMOTE_SEAT_HEATER_REQUEST', heater=heater,
level=level)
elif opt == 16:
vehicle.command('MEDIA_TOGGLE_PLAYBACK')
elif opt == 17:
command = raw_input("Enter command (close/vent):")
vehicle.command('WINDOW_CONTROL', command=command, lat=0, lon=0)
elif opt == 18:
try:
if vehicle['climate_state']['defrost_mode']:
vehicle.command('MAX_DEFROST', on=False)
else:
vehicle.command('MAX_DEFROST', on=True)
except KeyError:
print('Not available')
elif opt == 19:
amps = int(raw_input("Enter charging amps: "))
vehicle.command('CHARGING_AMPS', charging_amps=amps)
def custom_auth(url):
# Use pywebview if no web browser specified
if webview and not (webdriver and args.web is not None):
result = ['']
window = webview.create_window('Login', url)
def on_loaded():
result[0] = window.get_current_url()
if 'void/callback' in result[0].split('?')[0]:
window.destroy()
try:
window.events.loaded += on_loaded
except AttributeError:
window.loaded += on_loaded
webview.start()
return result[0]
# Use selenium to control specified web browser
options = [webdriver.chrome, webdriver.opera,
webdriver.edge][args.web].options.Options()
options.add_argument('--disable-blink-features=AutomationControlled')
with [webdriver.Chrome, webdriver.Opera,
webdriver.Edge][args.web](options=options) as browser:
logging.info('Selenium opened %s', browser.capabilities['browserName'])
browser.get(url)
WebDriverWait(browser, 300).until(EC.url_contains('void/callback'))
return browser.current_url
def main():
default_format = '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
logging.basicConfig(level=logging.DEBUG if args.debug else logging.INFO,
format=default_format)
if not args.verify:
# Disable SSL verify for Nominatim
ctx = ssl.create_default_context()
ctx.check_hostname = False
ctx.verify_mode = ssl.CERT_NONE
geopy.geocoders.options.default_ssl_context = ctx
email = raw_input('Enter email: ')
with Tesla(email, verify=args.verify, proxy=args.proxy,
sso_base_url=args.url) as tesla:
if (webdriver and args.web is not None) or webview:
tesla.authenticator = custom_auth
if args.timeout:
tesla.timeout = args.timeout
vehicles = tesla.vehicle_list()
print('-' * 80)
fmt = '{:2} {:25} {:25} {:25}'
print(fmt.format('ID', 'Display name', 'VIN', 'State'))
for i, vehicle in enumerate(vehicles):
print(fmt.format(i, vehicle['display_name'], vehicle['vin'],
vehicle['state']))
print('-' * 80)
idx = int(raw_input("Select vehicle: "))
print('-' * 80)
fmt = '{} last seen {} at {} % SoC'
print(fmt.format(vehicles[0]['display_name'], vehicles[0].last_seen(),
vehicles[0]['charge_state']['battery_level']))
print('-' * 80)
print('VIN decode:', ', '.join(vehicles[idx].decode_vin().values()))
print('Option codes:', ', '.join(vehicles[idx].option_code_list()))
print('-' * 80)
menu(vehicles[idx])
if __name__ == "__main__":
parser = argparse.ArgumentParser(description='Tesla Owner API Menu')
parser.add_argument('-d', '--debug', action='store_true',
help='set logging level to debug')
parser.add_argument('--url', help='SSO service base URL')
parser.add_argument('--verify', action='store_false',
help='disable verify SSL certificate')
parser.add_argument('--timeout', type=int, help='connect/read timeout')
if webdriver:
h = 'use Chrome browser' if webview else 'use Chrome browser (default)'
parser.add_argument('--chrome', action='store_const', dest='web',
help=h, const=0, default=None if webview else 0)
parser.add_argument('--opera', action='store_const', dest='web',
help='use Opera browser', const=1)
if hasattr(webdriver.edge, 'options'):
parser.add_argument('--edge', action='store_const', dest='web',
help='use Edge browser', const=2)
parser.add_argument('--proxy', help='proxy server URL')
args = parser.parse_args()
main()