Skip to content

Instantly share code, notes, and snippets.

@AnalyticETH
Forked from quantum77/autopilot-autosteer.sh
Created September 14, 2021 21:08
Show Gist options
  • Save AnalyticETH/94e47d34596c74383dd5cae71aff9def to your computer and use it in GitHub Desktop.
Save AnalyticETH/94e47d34596c74383dd5cae71aff9def to your computer and use it in GitHub Desktop.
An extension to Lunar's Tesla scripts
#!/bin/sh
# Allows autosteer at all speeds
# Does not disable autopilot nag
KEY1="GUI_disableAutosteerRestrictions"
KEY2="GUI_handsOnRequirementDisable"
WANTSTATE="true"
while true; do
sdv $KEY1 $WANTSTATE
sdv $KEY2 $WANTSTATE
echo -n $KEY1= && lv $KEY1
echo -n $KEY2= && lv $KEY2
sleep 60
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment