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-meazon

v0.0.11

Published

A meazon node for node-red

Downloads

5

Readme

node-red-contrib-meazon

A set of Node-RED nodes for working with Meazon devices.

Meazon designs and manufactures at scale revolutionary small size IoT energy meters and integrates them with cloud technology.

Install

Run the following command in your Node-RED user directory - typically ~/.node-red

npm install node-red-contrib-meazon

Output node

With the output node you can control any Meazon device with relay (Izy/Bizy Plugs and Dinrails)

On the configuration panel you can set

URL  :  ws://{GatewayIP}:2014
MAC  :  Select the Device MAC Address

Number  :  Device Endpoint
           Bizy Devices  :  10
           Izy Devices   :  9
           Sensor        :  1

Input Node

You can use the input node to get the device measurements. Leaving the descirptor field empty you are having a full dictionary with the reported values. The output for a 3Phase Dinrail (Endpoint:10) look like this:

	{ "frq10": 49.85, "pwrA10": 1296.65, "pwrB10": 4883.491, 
	  "pwrC10": 1368.955, "vltA10": 230.367, "vltB10": 229.857, 
	  "vltC10": 232.425, "curA10": 6.751, "curB10": 21.52, "curC10": 7.158 }
	{ "rpwrA10": 849.443, "rpwrB10": 346.577, "rpwrC10": 968.926 }
	{ "dxi10": 0 }
	{ "relay10": 1, "online10": 1 }
frq 	:	Network Frequency

pwrA	:	Power Phase A (Watt)
pwrB	:	Power Phase B (Watt)
pwrC	:	Power Phase C (Watt)

vltA	:	Voltage Phase A (Volt)
vltB	:	Voltage Phase B (Volt)
vltC	:	Voltage Phase C (Volt)

curA	:	Current Phase A (Amper)
curB	:	Current Phase B (Amper)
curC	:	Current Phase C (Amper)

rpwrA	:	Reactive Power A (Var)
rpwrB	:	Reactive Power B (Var)
rpwrC	:	Reactive Power C (Var)

dxi	    :	Digital External Input (High/Low)
relay	:	Relay Status (On/Off)
online	:	Device Status (Online/Offline)

tmp     :  Temperature (C) 
hmd     :  Humidity (%) 
clhmd   :  Centralite Sensor Humidity (%) 
occ     :  Occupancy Alarm (0/1)
batvlt  :  Battery Voltage (V) 
batlrm  :  Battery Alarm (0/1)