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

node-red-contrib-t2abv

v1.16.1

Published

A collection of nodes that can be used to calculate several alcohol distilling related numbers

Downloads

12

Readme

A couple of nodes that produce distillation related numbers based on temperature and atmospheric pressure, together with a couple of other nodes that come in handy when you are automating a still with a Raspberry Pi or otherwise.

The module consists of the following nodes:

  • h20BoilingPoint: calculates the boilingpoint of water at the current atmospheric pressure.

  • Azeotrope: calculates the Azeotrope temperature of ethanol.

  • TtoLiquidABV: calculates the ABV of a liquid, based on temperature of that liquid and the current atmospheric pressure. Different lookup tables are used for ds18b20 and smt172 sensors (smt172 connected to a separate nano) and can be defined in the settings.

  • TtoVaporABV: does the same for ethanol vapor. Also separate lookup tables for ds18b20 and smt172 sensors (smt172 connected to a separate nano).

  • TimeToTargetT: calculates an estimated time to reach a given temperature, based on a temperature measurement of a liquid every 60s.

  • TempOffset: calculates an offset compensated temperature, based on a stored global variable or fixed setting and input.

  • PowerLevel: uses pigpiod to set a hardware pwm signal that corresponds to a certain powerlevel (dutycycle). The frequency can be set in settings or also passed to the input.

  • GPIO: Dynamic configurable GPIO reader/writer and also uses pigpiod.

  • Bresenham: Distributes pulses evenly over time, based on the Bresenham algorithm. This can be used to control power with an SSR or for controlling the flow through a solenoid. Analog control for a digital process.

  • TtoRGB: This will add some bling to your still. It converts a temperature to a color in an free definable color range.

You might also be interested in a couple of other programs that I wrote for both Raspberry Pi and Arduino, in combination with the above that can be found on github:

  • smt172-nano-needlevalve: uses a nano to communicate the smt172 temperature data to the Pi and controls a needlevalve mechanism.

  • smt172-nano-peristalticpump: the same as above, except that it uses a peristaltic pump.

  • ds18b20-service: I noticed that Node-RED is a bit slow with the temperature measurement, so I wrote a daemon that runs in the background and uses MQTT to communicate the measurements and hardware addresses of the sensors.

  • bmp280-service: the same as above, but for a bmp(e)280 atmospheric pressure sensor.

Both the smt172 driver that is used on the Arduino Nano, as the ABV calculation library for the Arduino (ported to Node.js by me) were written by Edwin Croissant.