node-red-contrib-azure-iot-edge-kpm
v0.6.1
Published
Module to connect to and interact with Azure IoT Edge using Node-Red
Downloads
123
Maintainers
Readme
Azure IoT Edge Node-Red Module KPM
This Azure IoT Edge Node-Red Module is essentially a fork of a module that used to exist on npm, but disappeared around February 17, 2020. I pulled this from the Docker image that I'd built before the module disappeared. The only place that I see the original content still kind of alive is in a Docker image at gbbiotwesouth/noderededgemodule, a project that appears to still be active GitHub. I only need the Node-RED module, not the Docker image, so I am publishing this. The original MIT license applies and is included.
WARNING: I do not know that I'll be maintaining this going forward. I'm just doing this to address the problem that occured when the original module vanished.
Module nodes
The Node-Red module contains a number of custom nodes placed in the group "Azure IoT Edge". These nodes are "Module Twin", "Module Input", "Module Output", and "Module Method". These nodes represent the interaction that can be done with an Azure IoT Edge Module:
Module Client
The Module Client is a configuration node that needs to be created to make the connection between the IoT Edge and the Node-Red Azure IoT Edge nodes. If you use one of the examples a Module Client will be created automatically.
NOTE: Only one Module Client node should be used when using the Node-Red module.
Module Twin
The Module Twin enables you to interact with the module twin on IoT Hub. The node output will provide the twin desired property changes and the node input will enable you to send reported properties back to the IoT Hub. The message coming from the node output will have the property "topic: desired" added to it for selection and identification purposes.
The Module Twin only needs a connection to a Module Client:
Module Input
The Module Input enables you to receive input from other modules on your IoT Edge device. To receive input, you have to setup the route to point at the input you specified when you created the node. The node output will provide you with the incoming telemetry message. The message coming from the node output will have the properties "topic: input" and "input: <input name>" added to it for selection and identification purposes.
The Module Input needs a connection to a Module Client and the name of the "input"::
Module Output
The Module Output enables you to send output to the edgeHub module. To send output to another module or to the IoT Hub you have to setup the route to use the output when you created the node. The node input will enable you to send a message. The Module Output needs a connection to a Module Client and the name of the "output":
Module Method
The Module Method enables you receive module direct methods. The setup of each module defines which method the node is responding to and what the response is for the method call. The message coming from the node output will look like:
{
"topic": "method",
"method": "<the name of the method that was called>",
"payload": "<the payload that was sent when the method was called>"
}
The input of the node is used to send a response for the method call. So this should be used by taking the message from the output, passing it to any needed logic/work, and then building a response that will go back into this node.
The response must look like:
{
"status": 200, // use appropriate HTTP status code
"payload": "<any valid JSON>"
}
Both msg.status
and msg.payload
are required, and no other properties on msg
will be sent.
The Module Method needs a connection to a Module Client and the name of the "method":
Miscellaneous In-Process
For Device Twin...
Container Create Options:
{
"HostConfig": {
"Binds": [
"/path/to/your/iotedge/certs/directory/on/host:/data/certs"
]
}
}
Environment Variables:
Add these in your azure deployment manifest.
PATH_TO_CERTIFICATE_FILE: /data/certs/iot-edge-device-identity-full-chain.cert.pem
PATH_TO_KEY_FILE: /data/certs/iot-edge-device-identity.key.pem