Argon One V5 configuration

Is it possible to update the config script to have the option to change fan controls. Also the OLED screen settings don’t work as intended, I can’t set the turning off oled back to 120 seconds, on 0 it is just off. Also is there a way to create custom OLED displays?

I figured the things out even though it still isn’t working as intended. I noticed that no matter what I change or how many times I restart argononed service the fans don’t work at all. They spin up when I start my rp5 but that’s about it, after that it doesn’t work.

i2cdump returns only 0x02, even when writing 0x64
raspberrypi:~ $ i2cdetect -y 1
0 1 2 3 4 5 6 7 8 9 a b c d e f
00: – – – – – – – –
10: – – – – – – – – – – – – – – – –
20: – – – – – – – – – – – – – – – –
30: – – – – – – – – – – – – 3c – – –
40: – – – – – – – – – – – – – – – –
50: – – – – – – – – – – – – – – – –
60: – – – – – – – – – – – – – – – –
70: – – – – – – – –
This shows it being on 0x3c, writing to it doesn’t change anything, returns still 0x02. Disabling argononed and starting rp again has the value at 0x42, enabling and starting it again sets it to 0x02. I have set it to always on at 100% for testing but nothing changes.

With the ONE V5 case the fan is controlled by kernel, not by argononed via I2C. If you want to set the behaviour manually you could play a little bit with that:

cat /sys/class/thermal/cooling_device0/cur_state
echo "4" | sudo tee /sys/class/thermal/cooling_device0/cur_state

For more information please read: Argon V3 fan speed issues - #10 by HarryH

Ah, I understand, thanks for the help. Got too used to my V3 case.