My Argon ONE V2 fan is not working and I was wondering what pin number is the Argon ONE V2 board using to power up the fan so that I can enable it on /boot/config.txt to see if is going to work.
For those of you facing this problem, it could be cause the argon. service is not running, for some reason even when I tried to start the argon.services it didn’t work.
My workaround!
sudo crontab -e
@reboot sudo sleep 30; sudo python3 /usr/bin/argononed.py
If that can help anyone here, I managed to make the script work on my RPI 4 Argon One V2, M2 SATA and Raspbian Bookworm 64 bits.
Here’s what I did:
- Install the standard script with
curl https://download.argon40.com/argon1.sh | bash
- The script will hang at some point. Just kill it, it won’t create any problem
- Modify the service file
sudo vi /usr/lib/systemd/system/argononed.service
and replace the lineAfter=multi-user.target
withAfter=network.target
- Reload the systemctl daemon
sudo systemctl daemon-reload
- Restart the argononed daemon
sudo systemctl restart argononed
And now the fan should work as expected, at least that fixed it for me. I hope it helps someone here too!
Thomas