If you are using the scripts as provided by argon40, i.e. you ran the following command:
curl https://download.argon40.com/argoneon.sh | bash
The code will automatically set the fan speed to 25% if a value of 0 is provided. You can fix this one of two ways:
- edit /etc/argononed.py, find the function get_fanspeed, and comment out the following:
if fancfg < 25:
return 25
To comment out lines in python use the ‘#’ character…
# if fancfg < 25:
# return 25
- Uninstall and download from
curl -L https://raw.githubusercontent.com/JeffCurless/argoneon/main/argoneon.sh | bash