diff --git a/docs/README.md b/docs/README.md index 90d344a..98a7c85 100644 --- a/docs/README.md +++ b/docs/README.md @@ -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) diff --git a/docs/pimoroni_fan_shim.md b/docs/pimoroni_fan_shim.md new file mode 100644 index 0000000..0703c94 --- /dev/null +++ b/docs/pimoroni_fan_shim.md @@ -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 + +```