Skip to content

Commit 2fc0596

Browse files
committed
Made bulleted list
1 parent 4de6a5a commit 2fc0596

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/iot-edge/module-development.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,15 @@ An IoT Edge module can send messages to the cloud via the IoT Edge hub that acts
5252

5353
To send device-to-cloud telemetry messages using routes:
5454

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.
5858

5959
To process messages using routes:
6060

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.
6464

6565
#### Twins
6666

0 commit comments

Comments
 (0)