2019-09-25 08:50:53 +08:00
#!/usr/bin/env python3
2020-06-01 16:49:26 +08:00
2017-11-07 16:10:10 +08:00
import binascii
2017-11-07 14:54:57 +08:00
from panda import Panda
def tesla_tester ( ) :
2021-12-07 06:39:28 +08:00
p = Panda ( )
2017-11-07 14:54:57 +08:00
2020-06-01 05:07:01 +08:00
body_bus_speed = 125 # Tesla Body busses (B, BF) are 125kbps, rest are 500kbps
body_bus_num = 1 # My TDC to OBD adapter has PT on bus0 BDY on bus1 and CH on bus2
2017-11-07 16:10:10 +08:00
p . set_can_speed_kbps ( body_bus_num , body_bus_speed )
2019-07-20 10:35:50 +08:00
2019-11-21 03:56:26 +08:00
# Now set the panda from its default of SAFETY_SILENT (read only) to SAFETY_ALLOUTPUT
2017-11-07 14:54:57 +08:00
# Careful, as this will let us send any CAN messages we want (which could be very bad!)
print ( " Setting Panda to output mode... " )
p . set_safety_mode ( Panda . SAFETY_ALLOUTPUT )
2019-07-20 10:35:50 +08:00
2023-08-07 05:29:28 +08:00
# BDY 0x248 is the MCU_commands message, which includes folding mirrors, opening the trunk, frunk, setting the cars lock state and more.
# For our test, we will edit the 3rd byte, which is MCU_lockRequest. 0x01 will lock, 0x02 will unlock:
2017-11-07 14:54:57 +08:00
print ( " Unlocking Tesla... " )
2019-10-11 03:34:52 +08:00
p . can_send ( 0x248 , b " \x00 \x00 \x02 \x00 \x00 \x00 \x00 \x00 " , body_bus_num )
2017-11-07 14:54:57 +08:00
#Or, we can set the first byte, MCU_frontHoodCommand + MCU_liftgateSwitch, to 0x01 to pop the frunk, or 0x04 to open/close the trunk (0x05 should open both)
print ( " Opening Frunk... " )
2019-10-11 03:34:52 +08:00
p . can_send ( 0x248 , b " \x01 \x00 \x00 \x00 \x00 \x00 \x00 \x00 " , body_bus_num )
2019-07-20 10:35:50 +08:00
2017-11-07 14:54:57 +08:00
#Back to safety...
print ( " Disabling output on Panda... " )
2019-11-21 03:56:26 +08:00
p . set_safety_mode ( Panda . SAFETY_SILENT )
2019-07-20 10:35:50 +08:00
2017-11-07 16:10:10 +08:00
print ( " Reading VIN from 0x568. This is painfully slow and can take up to 3 minutes (1 minute per message; 3 messages needed for full VIN)... " )
2019-07-20 10:35:50 +08:00
2017-11-07 16:10:10 +08:00
vin = { }
while True :
#Read the VIN
can_recv = p . can_recv ( )
2024-07-31 12:20:48 +08:00
for address , dat , src in can_recv :
2017-11-07 16:10:10 +08:00
if src == body_bus_num :
2020-06-01 05:07:01 +08:00
if address == 1384 : # 0x568 is VIN
vin_index = int ( binascii . hexlify ( dat ) [ : 2 ] ) # first byte is the index, 00, 01, 02
vin_string = binascii . hexlify ( dat ) [ 2 : ] # rest of the string is the actual VIN data
2017-11-07 16:10:10 +08:00
vin [ vin_index ] = vin_string . decode ( " hex " )
2019-09-25 09:07:05 +08:00
print ( " Got VIN index " + str ( vin_index ) + " data " + vin [ vin_index ] )
2017-11-07 16:10:10 +08:00
#if we have all 3 parts of the VIN, print it and break out of our while loop
2018-06-15 08:48:31 +08:00
if 0 in vin and 1 in vin and 2 in vin :
2019-09-25 09:07:05 +08:00
print ( " VIN: " + vin [ 0 ] + vin [ 1 ] + vin [ 2 ] [ : 3 ] )
2017-11-07 16:10:10 +08:00
break
2017-11-07 14:54:57 +08:00
if __name__ == " __main__ " :
2018-06-15 08:48:31 +08:00
tesla_tester ( )