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-modbus-tokrak

v0.1.0

Published

Connects to a modbus slave and performs modbus read operations

Downloads

178

Readme

node-red-contrib-modbus-tokrak

Forked from https://github.com/balaji8385/node-red-contrib-modbus-tcp-ip

Version 1.2.0

  • Modified error log handling
  • Empty port can be saved without error
  • Exception can now be cought from catch node
  • Added number of retries and retry period in ms
  • All parameters can be send as input in the payload

Internal code rework:

  • The promise is used to control flow in case a connection could not be established

Node-RED Modbus TCP Flexi Reader

Connects to a modbus slave and performs modbus read operations.

Getting Started

Install the module via npm or directly via node-red. The module will be located in the function block. See help for an example.

Flow

Flow

Editing Connection

Edit Connection

Injecting Payload

Input Payload

Additional Payload Options

You can also send the modbus ip and port along with payload instead of giving it at the input of node. The values inside the configuration dialog will be used with higher priority. So you have to empty them if you want to send the parameters as payload. Eg: {
"unitid":5,
"functioncode":3,
"address":3000,
"quantity":100,
"modbus_ip":"192.168.10.31", "modbus_port": 3666, "timeout": 100, "retries": 0, "retry": 100, "logerror": true }

Authors

Makes use of:

  • modbus-stream (is included directly to avoid build problems with serial drivers)
  • modbus-pdu

License

This project is licensed under the MIT License - see the LICENSE.md file for details