Add pimoroni fan shim docs
This commit is contained in:
parent
3a9c502552
commit
5e348f9cb2
|
@ -19,6 +19,7 @@ Items marked ```REQUIRED``` are assumed to be setup and working. You've been war
|
||||||
* [Slideshow Setup (REQUIRED)](slideshow.md)
|
* [Slideshow Setup (REQUIRED)](slideshow.md)
|
||||||
* [Email Notifications (REQUIRED)](email_notifications.md)
|
* [Email Notifications (REQUIRED)](email_notifications.md)
|
||||||
* [System Monitoring (REQUIRED)](monit.md)
|
* [System Monitoring (REQUIRED)](monit.md)
|
||||||
|
* [Pimoroni Fan Shim](pimoroni_fan_shim.md)
|
||||||
* [HDMI Scheduled On/Off](scheduled_display.md)
|
* [HDMI Scheduled On/Off](scheduled_display.md)
|
||||||
* [CPU Governor](cpu_governor.md)
|
* [CPU Governor](cpu_governor.md)
|
||||||
* [Backups via restic](restic.md)
|
* [Backups via restic](restic.md)
|
||||||
|
|
15
docs/pimoroni_fan_shim.md
Normal file
15
docs/pimoroni_fan_shim.md
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
# Pimoroni Fan Shim
|
||||||
|
|
||||||
|
The below commands will setup the Pimoroni Fan Shim. The commands will turn the fan on at 45C and off again at 50C. Adjust if you need different values.
|
||||||
|
|
||||||
|
``` sh
|
||||||
|
|
||||||
|
sudo -sHu root
|
||||||
|
git clone https://github.com/pimoroni/fanshim-python.git /opt/fanshim-python
|
||||||
|
cd /opt/fanshim-python
|
||||||
|
./install.sh
|
||||||
|
cd examples
|
||||||
|
sudo ./install-service.sh --on-threshold 55 --off-threshold 45 --delay 5
|
||||||
|
systemctl enable --now pimoroni-fanshim.service
|
||||||
|
|
||||||
|
```
|
Loading…
Reference in a new issue