Created
October 4, 2019 09:28
-
-
Save wido/59e4b5f5d67f92731f36bd13bb8fc957 to your computer and use it in GitHub Desktop.
Tesla MCU factory mode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Put Tesla MCU1 in factory mode | |
# | |
# Call over diagnostics port with seceth enabled | |
# | |
# Reboot MCU afterwards | |
# | |
VALUE=true | |
if [ ! -z "$1" ]; then | |
VALUE=$1 | |
fi | |
CID="192.168.90.100" | |
curl "http://${CID}:4070/_data_set_value_request_?name=GUI_factoryMode&value=${VALUE}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is this still working?