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 🙏

© 2025 – Pkg Stats / Ryan Hefner

node-red-contrib-beckhoff-nodes

v0.0.7

Published

Custom Node-RED nodes for Beckhoff BK9100 bus couplers

Readme

node-red-contrib-beckhoff-nodes

Node-RED nodes for Beckhoff BK9100 bus couplers via Modbus TCP. Read and control Beckhoff KL-series I/O modules for building automation and industrial control.

Installation

npm install node-red-contrib-beckhoff-nodes

Or install via Node-RED palette manager.

Supported Cards

| Card | Type | Channels | |------|------|----------| | KL1804/08 | Digital Input | 4/8 | | KL2404/08 | Digital Output | 4/8 | | KL3204/08 | Temperature Input | 4/8 | | KL3464/68 | Voltage Input (0-10V) | 4/8 |

Quick Start

  1. Add BK9100 node to your flow
  2. Configure IP address and port (default: 502)
  3. Add cards and set poll rate (default: 1000ms)
  4. Connect outputs to process data

Usage

Reading Inputs

Each channel outputs separately:

{
  topic: "KL1808/ch3",
  payload: {
    channel: 3,
    value: true
  }
}

Controlling Outputs

Topic-based:

msg.topic = "KL2408/ch5";
msg.payload = true;  // or false, 1, 0, "on", "off"

Object-based:

msg.payload = {
  card: "KL2408",
  channel: 5,
  value: true
};

Temperature Sensors (KL3204/08)

Configure sensor type per channel (Pt1000, Ni1000, NTC):

{
  topic: "KL3208/ch2",
  payload: {
    channel: 2,
    celsius: 22.45,
    fahrenheit: 72.41,
    ok: true
  }
}

Voltage Inputs (KL3464/68)

Configure range (0-10V, 0.5-10V, 2-10V):

{
  topic: "KL3468/ch1",
  payload: {
    channel: 1,
    voltage: 7.35,
    percentage: 73.5
  }
}

Configuration

Global Settings:

  • IP Address, Port, Unit ID
  • Poll Rate (ms) for inputs

Per-Card Settings:

  • Custom poll rate (optional)
  • Output cards: Poll states and read-back after write
  • Temperature cards: Sensor type per channel
  • Voltage cards: Range and manufacturer per channel

License

MIT

Support

Report issues at GitHub