npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

pi-fan

v0.0.2

Published

Small program to control raspberry pi fanspeed

Downloads

21

Readme

PI-Fan

This is a super simple node script to control the fan speed based on the temperature of the raspberry pi's CPU.

Note that this is just experimental, since temperature control of the cpu can be considered cirtical there are probably more reliable ways to control it and the memory footprint of javascript might is not the best for background services as this.

But that doens't mean we cant play around with it and for a hobby project this might just be the right fit considering the low price and hackability.

Setup

This script makes use of pigpio, so we need to install the pigpio C library. For more details you can check the previous link to pigpio!

sudo apt-get update
sudo apt-get install pigpio

Then install node modules as usual.

npm install

Usage

node ./src/index.js --fanPin 17 -dutyCycleOffset 75 -tempTreshold 40 -criticalTempTreshold 80

fanPin (required) The Gpio control pin the fan is connected to. !Note that it is the GPIO pin not the physical one GPIO 17 -> pin 11.

dutyCycleOffset (required) Offset for the pulse width sins chances are the fan wont start turining at a pulse width of 1. This depends on the fan used.

For example if the fan circuit is running on 12V then this is then devided over the amount of 'pwm steps' (which is 255). So 12V / 255 = 0,047V increase at each sinble step. If we configure and offset of 80, then the script will start at a step 80 which is equal to 0,047 * 80 = 3,76V causing the fan to spin at a low pace.

tempTreshold (default 40)

This is the treshold that needs to be surpassed in orde for the script to trigger the fan temperture below this is considered ok withoud additional cooling. As for the raspberry a good temperature is usually below 40 hence the default.

criticalTempTreshold (default 80)

Critical treshold is the end of the temperatur range over which we will spread the pwm steps. At this temperature the fan must be running at max rate to control temperature.

And to start the script simply run node start, you might have to sudo node start because pigpio root/sudo privileges to access hardware peripherals.

Hardware configuration

  • A fan (One of an old pc will do fine)
  • Transistor *BD135 (Others can be used depending on the fan current)
  • 1k ohm resistor
  • 4.7uF ~ 47uF capacitor
  • a diode
  • And some wires