From 5e348f9cb2197a7b6bbbdd2eff9f49f588acbabb Mon Sep 17 00:00:00 2001 From: KemoNine Date: Mon, 10 Aug 2020 20:28:11 -0400 Subject: [PATCH] Add pimoroni fan shim docs --- docs/README.md | 1 + docs/pimoroni_fan_shim.md | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 docs/pimoroni_fan_shim.md 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 + +```