Skip to content

Commit 68dc7e5

Browse files
Merge pull request #299037 from PatAltimore/patricka-typo
IoT Hub typos
2 parents fc8ba56 + da5be18 commit 68dc7e5

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

articles/iot-edge/includes/iot-edge-clean-up-cloud-resources.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ services: iot-edge
55
author: PatAltimore
66
ms.service: azure-iot-edge
77
ms.topic: include
8-
ms.date: 08/10/2018
8+
ms.date: 04/29/2025
99
ms.author: patricka
1010
ms.custom: include file
1111
---
1212

1313

1414
### Delete Azure resources
1515

16-
Deleting Azure resources and resource groups is irreversible. Make sure that you don't accidentally delete the wrong resource group or resources. If you created the IoT hub inside an existing resource group that has resources that you want to keep, delete only the IoT hub resource itself, not the resource group.
16+
Deleting Azure resources and resource groups is irreversible. Make sure that you don't accidentally delete the wrong resource group or resources. If you created the IoT Hub inside an existing resource group that has resources that you want to keep, delete only the IoT Hub resource itself, not the resource group.
1717

1818
To delete the resources:
1919

articles/iot-edge/tutorial-develop-for-linux.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Use the quickstart article [Deploy code to a Linux Device](quickstart-linux.md)
5656

5757
Cloud resources:
5858

59-
* A free or standard-tier [IoT hub](../iot-hub/iot-hub-create-through-portal.md) in Azure.
59+
* A free or standard-tier [Azure IoT Hub](../iot-hub/iot-hub-create-through-portal.md).
6060

6161
[!INCLUDE [quickstarts-free-trial-note](~/reusable-content/ce-skilling/azure/includes/quickstarts-free-trial-note.md)]
6262

@@ -69,7 +69,7 @@ Cloud resources:
6969
7070
## Key concepts
7171

72-
This tutorial walks through the development of an IoT Edge module. An *IoT Edge module* is a container with executable code. You can deploy one or more modules to an IoT Edge device. Modules perform specific tasks like ingesting data from sensors, cleaning and analyzing data, or sending messages to an IoT hub. For more information, see [Understand Azure IoT Edge modules](iot-edge-modules.md).
72+
This tutorial walks through the development of an IoT Edge module. An *IoT Edge module* is a container with executable code. You can deploy one or more modules to an IoT Edge device. Modules perform specific tasks like ingesting data from sensors, cleaning and analyzing data, or sending messages to an IoT Hub. For more information, see [Understand Azure IoT Edge modules](iot-edge-modules.md).
7373

7474
When developing IoT Edge modules, it's important to understand the difference between the development machine and the target IoT Edge device where the module deploys. The container that you build to hold your module code must match the operating system (OS) of the *target device*. For example, the most common scenario is someone developing a module on a Windows computer intending to target a Linux device running IoT Edge. In that case, the container operating system would be Linux. As you go through this tutorial, keep in mind the difference between the *development machine OS* and the *container OS*.
7575

@@ -361,7 +361,7 @@ The target architecture is set when you create the container image in a later st
361361

362362
### Update module with custom code
363363

364-
Each template includes sample code that takes simulated sensor data from the **SimulatedTemperatureSensor** module and routes it to the IoT hub. The sample module receives messages and then passes them on. The pipeline functionality demonstrates an important concept in IoT Edge, which is how modules communicate with each other.
364+
Each template includes sample code that takes simulated sensor data from the **SimulatedTemperatureSensor** module and routes it to the IoT Hub. The sample module receives messages and then passes them on. The pipeline functionality demonstrates an important concept in IoT Edge, which is how modules communicate with each other.
365365

366366
Each module can have multiple *input* and *output* queues declared in their code. The IoT Edge hub running on the device routes messages from the output of one module into the input of one or more modules. The specific code for declaring inputs and outputs varies between languages, but the concept is the same across all modules. For more information about routing between modules, see [Declare routes](module-composition.md#declare-routes).
367367

@@ -379,7 +379,7 @@ The sample C# code that comes with the project template uses the [ModuleClient C
379379
using Newtonsoft.Json; // For JsonConvert
380380
```
381381

382-
1. Add the **temperatureThreshold** variable to the **ModuleBackgroundService** class. This variable sets the value that the measured temperature must exceed for the data to be sent to the IoT hub.
382+
1. Add the **temperatureThreshold** variable to the **ModuleBackgroundService** class. This variable sets the value that the measured temperature must exceed for the data to be sent to the IoT Hub.
383383

384384
```csharp
385385
static int temperatureThreshold { get; set; } = 25;
@@ -926,7 +926,7 @@ In this section, add the code that expands the *filtermodule* to analyze the mes
926926
import json
927927
```
928928
929-
1. Add global definitions for **TEMPERATURE_THRESHOLD**, **RECEIVED_MESSAGES** and **TWIN_CALLBACKS** variables. The temperature threshold sets the value that the measured machine temperature must exceed for the data to be sent to the IoT hub.
929+
1. Add global definitions for **TEMPERATURE_THRESHOLD**, **RECEIVED_MESSAGES** and **TWIN_CALLBACKS** variables. The temperature threshold sets the value that the measured machine temperature must exceed for the data to be sent to the IoT Hub.
930930
931931
```python
932932
# global counters
@@ -1295,7 +1295,7 @@ The sample module code receives messages through its input queue and passes them
12951295
12961296
1. In the Visual Studio Code explorer, right-click the IoT Edge device that you want to monitor, then select **Start Monitoring Built-in Event Endpoint**.
12971297
1298-
1. Watch the output window in Visual Studio Code to see messages arriving at your IoT hub.
1298+
1. Watch the output window in Visual Studio Code to see messages arriving at your IoT Hub.
12991299
13001300
:::image type="content" source="./media/tutorial-develop-for-linux/view-d2c-messages.png" alt-text="Screenshot showing where to view incoming device to cloud messages.":::
13011301
@@ -1323,7 +1323,7 @@ The commands in this section are for your IoT Edge device, not your development
13231323
13241324
IoT Edge modules are case-sensitive.
13251325
1326-
The *tempSensor* and *filtermodule* logs should show the messages they're processing. The edgeAgent module is responsible for starting the other modules, so its logs have information about implementing the deployment manifest. If you find a module is unlisted or not running, the edgeAgent logs likely have the errors. The edgeHub module is responsible for communications between the modules and IoT Hub. If the modules are up and running, but the messages aren't arriving at your IoT hub, the edgeHub logs likely have the errors.
1326+
The *tempSensor* and *filtermodule* logs should show the messages they're processing. The edgeAgent module is responsible for starting the other modules, so its logs have information about implementing the deployment manifest. If you find a module is unlisted or not running, the edgeAgent logs likely have the errors. The edgeHub module is responsible for communications between the modules and IoT Hub. If the modules are up and running, but the messages aren't arriving at your IoT Hub, the edgeHub logs likely have the errors.
13271327
13281328
## Clean up resources
13291329

0 commit comments

Comments
 (0)