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

@candy-line/node-red-contrib-eh-terminal-g2

v1.0.2

Published

A Node-RED node for m-pression EH-Terminal G2 SmartMesh Wireless Sensor Device by Macnica

Downloads

13

Readme

node-red-contrib-eh-terminal-g2

GitHub release master Build Status

Node-RED node for m-pression EH-Terminal G2 Wireless Sensor Device by Macnica, which supports Analog Devices' SmartMesh IP wireless technology.

Macnica EH-Terminal G2

This device has the following sensors and emits all the sensor data every 30 seconds.

  1. Illuminance (lux)
  2. Temperature (degree Celsius) and Humidity (%)
  3. 3-axis Accelerometer (g)
  4. Battery voltage (V)

This node parses and translates the raw packets into easy-to-use JSON objects. The node supports Node-RED Dashboard Chart node data format, which means you can quickly plot the device sensor data with the Chart node without any data transformation.

Where to buy EH-Terminal G2

Let's ask Macnica!

Example Flow

The bundled example flow provides the following demonstrations:

  • Transform a raw protocol message from EH-Terminal G2 into live chart values to draw a chart with UI Chart node
  • Print SmartMesh notification events
  • Print OAP message if any

Prerequisites

Software

The following node is required to receive SmartMesh data packets. The example node relies on it as well.

Hardware

  • DC2274A-A SmartMesh IP™ USB Manager dongle, or its equivalent device (SmartMesh Master mote) having a serialport CLI

How to use

In order to use EH-Terminal G2 with your SmartMesh IP™ USB Manager dongle, you might need some work.

  1. Change Network ID on your Manager
  2. Restart the network

Change Network ID on your Manager

Connect SmartMesh IP™ USB Manager dongle to your computer and start a terminal session to the USB serial port. Here is a linux/macOS example command using screen.

$ screen /dev/ttyUSBX 9600

Then login to the Manager. We assume your USB Manager configuration is identical to the factory default.

> login user
> set config netid 1723

The Network ID 1723 is the factory default Network ID on EH-Terminal G2. The configuration change persists even after reboot so you don't have to repeat the process once you modify it.

Restart the network

In order to take effect the change, the network should be restarted.

> reset system

Exit the screen terminal by hitting Ctrl A then Ctrl Z.

How to install

Node-RED users

Use Manage Palette dialog in the browser editor or run the following commands:

cd ~/.node-red
npm install @candy-line/node-red-contrib-eh-terminal-g2

Then restart Node-RED process.

Uninstallation

cd ~/.node-red
sudo npm uninstall --unsafe-perm @candy-line/node-red-contrib-eh-terminal-g2

CANDY RED users

Use Manage Palette dialog in the browser editor or run the following commands:

cd /opt/candy-red/.node-red
sudo npm install --unsafe-perm @candy-line/node-red-contrib-eh-terminal-g2

Then restart candy-red service.

sudo systemctl restart candy-red

Uninstallation

Manage Palette dialog should work for uninstallation as well as the following commands:

cd /opt/candy-red/.node-red
sudo npm uninstall --unsafe-perm @candy-line/node-red-contrib-eh-terminal-g2

Appendix

How to build

# build
$ NODE_ENV=development npm run build
# package
$ NODE_ENV=development npm pack

License

  • Source Code ... ASL 2.0 ©CANDY LINE INC.
  • Node Icon ... CC BY-ND 3.0

Revision History

  • 1.0.2

    • Strip unit property as it's redundant from the standard message
  • 1.0.1

    • Add node-red keyword
  • 1.0.0

    • Initial Release