Where can I find the SW to make the Cloudshell 2 fan work? I have tried several of the forum solutions but they are not available.
Thanks
Does this work?
apt -y install i2c-tools
i2cset -y 0 0x60 0x05 0x00
And to stop:
i2cset -y 0 0x60 0x05 0x05
Wow Vielen Dank!!!
Yes both instructions work. will it work if I turn it off?
Just give it a try
No, this is not boot persistent. Simple way:
echo -e '#!/bin/dash\ni2cset -y 0 0x60 0x05 0x00' > /var/lib/dietpi/postboot.d/cloudshell2-fan.sh
A systemd service is also possible, and would be probably nicer if you want to control it easier. Currently, you’d need to run the stop command posted above, and to start it again the start command manually. With a systemd service you can instead do:
systemctl start cloudshell2-fan
systemctl status cloudshell2-fan
systemctl stop cloudshell2-fan
Let me know if you need that.