node-red-contrib-emberplus-gadget 0.1.10
Node-RED node for Ember+ protocol communication using node-emberplus
node-red-contrib-emberplus-gadget
A Node-RED node for communicating with devices using the Ember+ protocol. This node is currently only for reading values.
Installation
Install from the Node-RED palette, or run:
npm install node-red-contrib-emberplus-gadget
Usage
- Add an Ember+ Gadget node to your flow.
- Configure the node with:
- Host: The hostname or IP address of your Ember+ server
- Port: The port number (default: 9000)
- OID: The OID path you want to read (e.g.,
997.1.2
) or use msg.iod - Output format: Choose how the result is output:
array
(default):[OID, Value, Description]
object
:{ oid, value, description }
value
: Value only
- Connect the node to other nodes in your flow.
- Deploy the flow.
The node will output the value of the specified OID in the message payload.
Features
- Connects to Ember+ servers
- Reads OID values (manual OID entry)
- Fast, direct lookup (no tree search)
- Multiple output formats (array, object, value)
- Automatic connection management
- Error handling
Requirements
- Node-RED
- Ember+ server (with known OIDs)
- node-emberplus (installed automatically)
License
MIT
Contributing
Pull requests and issues are welcome!
Examples
Example flows can be found in the examples
directory. Import them into Node-RED to get started quickly.
Changelog:
- v0.1.5: Changed the Node registration so there are 2 nodes now instead of a duplicate.