temp_throttle.sh: change delay to 0.5s

This commit is contained in:
Xavier Del Campo Romero 2023-01-07 11:35:13 +01:00
parent 4e6fa06ea0
commit 36df069e73
Signed by: xavi
GPG Key ID: 91E79CB9F88C50AF
1 changed files with 1 additions and 1 deletions

View File

@ -151,5 +151,5 @@ while true; do
elif [ $TEMP -le $LOW_TEMP ]; then # Unthrottle if cool.
unthrottle
fi
sleep 3 # The amount of time between checking temperatures.
sleep 0.5 # The amount of time between checking temperatures.
done