Skip to content

Instantly share code, notes, and snippets.

@wido
Created October 4, 2019 09:28
Show Gist options
  • Select an option

  • Save wido/59e4b5f5d67f92731f36bd13bb8fc957 to your computer and use it in GitHub Desktop.

Select an option

Save wido/59e4b5f5d67f92731f36bd13bb8fc957 to your computer and use it in GitHub Desktop.
Tesla MCU factory mode
#!/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}"
@incccs
Copy link
Copy Markdown

incccs commented Aug 11, 2020

Is this still working?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment