You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/iot-edge/module-development.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,15 +52,15 @@ An IoT Edge module can send messages to the cloud via the IoT Edge hub that acts
52
52
53
53
To send device-to-cloud telemetry messages using routes:
54
54
55
-
1. Use ModuleClient of the [Azure IoT SDK](https://github.com/Azure/azure-iot-sdks). Each module has *input* and *output* endpoints.
56
-
1. Use the `ModuleClient.sendMessageAsync` method to send messages on the output endpoint of your module.
57
-
1. Configure a route in edgeHub to send this output endpoint to IoT Hub.
55
+
* Use ModuleClient of the [Azure IoT SDK](https://github.com/Azure/azure-iot-sdks). Each module has *input* and *output* endpoints.
56
+
* Use the `ModuleClient.sendMessageAsync` method (or equivalent in your preferred language) to send messages on the output endpoint of your module.
57
+
* Configure a route in edgeHub to send this output endpoint to IoT Hub.
58
58
59
59
To process messages using routes:
60
60
61
-
1. Set up a route to send messages coming from another endpoint (module or device) to the input endpoint of your module.
62
-
1. Listen for messages on the input endpoint of your module. Each time a new message comes back, a callback function is triggered by the Azure IoT SDK.
63
-
1. Process your message with this callback function and (optionally) send new messages in your module endpoint queue.
61
+
* Set up a route to send messages coming from another endpoint (module or device) to the input endpoint of your module.
62
+
* Listen for messages on the input endpoint of your module. Each time a new message comes back, a callback function is triggered by the Azure IoT SDK.
63
+
* Process your message with this callback function and (optionally) send new messages in your module endpoint queue.
0 commit comments