Add pimoroni fan shim docs

This commit is contained in:
KemoNine 2020-08-10 20:28:11 -04:00
parent 3a9c502552
commit 5e348f9cb2
2 changed files with 16 additions and 0 deletions

View File

@ -19,6 +19,7 @@ Items marked ```REQUIRED``` are assumed to be setup and working. You've been war
* [Slideshow Setup (REQUIRED)](slideshow.md)
* [Email Notifications (REQUIRED)](email_notifications.md)
* [System Monitoring (REQUIRED)](monit.md)
* [Pimoroni Fan Shim](pimoroni_fan_shim.md)
* [HDMI Scheduled On/Off](scheduled_display.md)
* [CPU Governor](cpu_governor.md)
* [Backups via restic](restic.md)

15
docs/pimoroni_fan_shim.md Normal file
View 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
```