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

smithtek-nodered-mako-decoder

v1.1.6

Published

Node that will decode Modbus data from the Mako PLC to useable json objects.

Downloads

46

Readme

Smithtek-nodered-mako-decoder

example1

Installation

Install the smithtek-node-red-mako-decoder using the NodeRED palette manager.

About

This node comes pre-installed on the Smithtek PassPort gateway. If you own a Mako V2 PLC, you can also utilize this node on other systems running Node-RED. To install, use the Palette Manager or execute the command: npm install smithtek-node-red-mako-decoder When used in conjunction with the Modbus contrib, this node parses polled Modbus data from the Mako PLC. Utilizing the V-NET software, you can create a data/register table in V-NET. The Decoder node is also capable of constructing an identical table, ensuring seamless and efficient decoding of PLC data.

Please note: This node is designed for reading data from the Mako and does not support writing values back to the PLC. To write values, you must use Modbus write nodes independently.

Declaration

This node is an adaptation of the previously published node-red-contrib-buffer-parser by Stephen McLaughlin. The Mako decoder can be used alongside the node-red-contrib-buffer-parser without any conflicts. To enhance usability, many features of the original node have been removed for a more hardware specific user experience.

V-NET Modbus

In V-NET you must build a Modbus data table, Input registers, holding registers, within these tables you add the registers data types. The following data types are what's available. The 32 bit data types are most significant word first. The conversion has already been don't in the Mako Decoder but you must select this function in V-NET next to each register in the properties.

  • 16 bit integer
  • 16 bit unsigned
  • 32 bit integer
  • 32 bit unsigned
  • 32 bit float
  • 8 * bool Unsigned binary encoder" This item will split a 16 bit unsigned and output it in bool true/false. If using more than 1 bool see instructions below, decoders for digital inputs
  • Digital bits Unsigned binary encoder This item will split a 16 bit unsigned into separate bits nested in an array. Each bit has a json key "bit1":0 or 1

Matching data

The number 1 rule is to build your table in V-NET and then copy the exact same order of that table in the Mako decoder. Doing so will ensure the data is properly parsed for further use. example1

Physical wiring Modbus channels

The Modbus component in V-NET can be wired t0 1 or multiple interfaces:

  • RS485-1
  • RS485-2
  • LoRa
  • Modbus over TCP
  • Serial Monitor External USB PassPort A single interface can be used or all interfaces at the same time.

Building Modbus tables in V-NET

example1

Mako Decoder - Summary of functionality

  • Input data can come from any msg property (not limited to msg.payload)
  • Output results can be multiple messages as topic and payload
  • Output results can be a single msg style output
  • additionally, output results can be 1 of 4 styles...
    • "value" : the parsed values are sent in an array
    • "keyvalue" : the parsed values are sent in an object as key/value pairs
    • "object" : the parsed values are sent as named objects with the value set .value and other contextual properties included (like the item
    • "array" : the parsed values are sent as objects in an array, with each object containing a .value property and other contextual properties included (like the item specification)
    • "buffer" : this mode simply returns a buffer (no item processing)
  • Final values can be masked (e.g. a MASK of 0x7FFF could be used to remove the MSB or 0b1000000000000001 to keep only MSB and LSB)
  • Final values can be have a Scale value or a simple Scale Equation
    • e.g. Entering a Scale value of 0.01 would turn 9710 into 97.1
    • e.g. Entering a Scale value of 10 would turn 4.2 into 42
    • e.g. Entering a Scale Equation of >> 4 would bit shift the value 0x0070 to 0x0007
    • e.g. Entering a Scale Equation of + 42 would add an offset of 42 to the final value
    • Supported Scaling Equations are...
      • << e.g. <<2 would left shift the parsed value 2 places
      • >> e.g. >>2 would right shift the parsed value 2 places
      • >>> e.g. >>>2 would zero-fill right shift the parsed value 2 places (returns a 32bit unsigned value)
      • + e.g. +10 would add 10 to the parsed value
      • - e.g. -10 would deduct 10 from the parsed value
      • / e.g. /10 would divide the parsed value by 10
      • * e.g. *10 would multiply the parsed value by 10
      • ** e.g. **2 would raise the parsed value to the power of 2
      • ^ e.g. ^0xf0 would XOR the parsed value with 0xf0
      • == e.g. ==10 would result in true if the parsed value was equal to 10
      • != e.g. !=10 would result in false if the parsed value was equal to 10
      • !! e.g. !! would result in true if the parsed value was 1 (same as !!1 == true)
      • > e.g. >10 would result in true if the parsed value was greater than 10
      • < e.g. <10 would result in true if the parsed value was less than 10
    • NOTE: the scale/equation is applied AFTER the mask

Decoders for digital inputs

  • 8 x bool Unsigned binary encoder.
  • Digital bits Unsigned binary encoder.

To streamline this process, you can consolidate the digital I/O into an unsigned value. This allows the digital I/O to be read as input registers alongside other analog data, such as GPS coordinates, battery voltage, analog inputs, and counters. This approach not only simplifies your V-NET sketch but also reduces airtime when communicating over LoRa. Parsing Methods

There are two parsing methods available in the decoder: 8 x Bool Unsigned Binary Encoder: This method enables you to select bits individually from the message. You can assign each bit a JSON name (e.g., "digital input 1": true) and add it to the output payload as a Boolean value along with the other decoded data. Using this feature streamlines data management and reduces the complexity of your network communications When using this method, ensure the item offset is on the correct word and then offset the first bit to 8. It will output the bool from the first PIN digital zero on the binary encoder component in V-NET. If you keep adding more items to the table it will automatically increment the bit offset. This feature has a maximum of 8 digital Ins.

The Digital bits Unsigned binary encoder is slightly different in that it can return the status of the complete 16 bit and output them in an json array with either a 1 or 0. The array will name the first bit "bit1" to "bit16" there is no configuring on this, just select the correct offset word and it will automatically output the array.

Digital bits Unsigned Binary encoder

example1a

8 x Bool Unsigned Binary Encoder

example1b

Mixed table of data types when using the 8 x Bool Unsigned Binary Encoder.

example1

When constructing the decoding tables and integrating digital inputs, it is advisable to place them at the top of the table for easier management. As a precautionary measure and to future-proof your setup, consider adding two 8 x Bool Unsigned Binary Encoder instances at the beginning. Incrementing Offsets for Additional Data Types

When adding subsequent items, such as a float, you must adjust the offset appropriately to account for the entries that precede it. For instance, if you start with two instances of the 8 x Bool Unsigned Binary Encoder, each occupying an offset space, and then plan to add a float, you should increase the offset by 4. This means if the 8 x Bool Unsigned Binary Encoder entries are at the top, your float should start at an offset of +4.

This structured approach ensures that each data type is correctly aligned in your decoding table, preventing data overlap and ensuring accurate data retrieval.

License

Copyright (c) 2023 www.smithtek.com.au
Licensed under the terms of the GPLv3

Acknowledgements

Special thanks to

  • Nick O'Leary and Dave Conway-Jones for their invaluable contributions to the Node-Red community.
  • Stephen McLaughlin who's awesome hard work is the only reason we have this node :) Check his github here: https://github.com/Steve-Mcl

Contact: [email protected]
Website: www.smithtek.com.au