Skip to content

Commit 6ec0b65

Browse files
Merge pull request #294671 from dominicbetts/feb-freshness
IoT: Minor updates as part of freshness
2 parents 704ee62 + f20cf0d commit 6ec0b65

10 files changed

+22
-22
lines changed

articles/iot-central/core/quick-deploy-iot-central.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Quickstart - Connect a device to Azure IoT Central
33
description: In this quickstart, you learn how to connect your first device to a new IoT Central application. This quickstart uses a smartphone app as an IoT device.
44
author: dominicbetts
55
ms.author: dobett
6-
ms.date: 03/01/2024
6+
ms.date: 02/14/2025
77
ms.topic: quickstart
88
ms.service: azure-iot-central
99
services: iot-central

articles/iot/iot-phone-app-how-to.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: dominicbetts
55
ms.service: azure-iot
66
services: iot
77
ms.topic: how-to
8-
ms.date: 02/28/2024
8+
ms.date: 02/14/2025
99
ms.author: dobett
1010

1111
---
@@ -136,7 +136,7 @@ To view the data the device is sending in your IoT Central application:
136136
1. Sign in to your IoT Central application and navigate to the **Devices** page. Your device is automatically assigned to the **Smartphone** device template.
137137

138138
> [!TIP]
139-
> You may need to refresh the page in your web browser to see when the device is assigned to the **Smartphone** device template.
139+
> You might need to refresh the page in your web browser to see when the device is assigned to the **Smartphone** device template.
140140
141141
1. On the list of devices, click on the device name and then select **Overview**. The **Overview** page shows the telemetry from the smartphone sensors:
142142

articles/iot/iot-sdks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: dobett
66
ms.service: azure-iot
77
services: iot
88
ms.topic: conceptual
9-
ms.date: 02/28/2024
9+
ms.date: 02/14/2025
1010

1111
---
1212

articles/iot/tutorial-connect-device.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Tutorial - Connect IoT Plug and Play sample device code to Azure IoT Hub
33
description: Tutorial - Build and run IoT Plug and Play sample device code (C, C#, Java, JavaScript, or Python) on Linux or Windows that connects to an IoT hub. Use the Azure IoT explorer tool to view the information sent by the device to the hub.
44
author: dominicbetts
55
ms.author: dobett
6-
ms.date: 1/23/2024
6+
ms.date: 02/14/2025
77
ms.topic: tutorial
88
ms.service: azure-iot
99
ms.custom: devx-track-extended-java, devx-track-js, devx-track-python, linux-related-content

includes/iot-pnp-clean-resources-short.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ author: dominicbetts
33
ms.author: dominicbetts
44
ms.service: azure-iot
55
ms.topic: include
6-
ms.date: 11/17/2022
6+
ms.date: 02/14/2025
77
---
88

99
## Clean up resources

includes/iot-pnp-connect-device-c.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ author: dominicbetts
33
ms.author: dobett
44
ms.service: azure-iot
55
ms.topic: include
6-
ms.date: 11/17/2022
6+
ms.date: 02/14/2025
77
---
88

99
This tutorial shows you how to build a sample IoT Plug and Play device application, connect it to your IoT hub, and use the Azure IoT explorer tool to view the telemetry it sends. The sample application is written in C and is included in the Azure IoT device SDK for C. A solution builder can use the Azure IoT explorer tool to understand the capabilities of an IoT Plug and Play device without the need to view any device code.
@@ -14,7 +14,7 @@ This tutorial shows you how to build a sample IoT Plug and Play device applicati
1414

1515
[!INCLUDE [iot-pnp-prerequisites](iot-pnp-prerequisites.md)]
1616

17-
You can run this tutorial on Linux or Windows. The shell commands in this tutorial follow the Linux convention for path separators '`/`', if you're following along on Windows be sure to swap these separators for '`\`'.
17+
You can run this tutorial on Linux or Windows. The shell commands in this tutorial follow the Linux convention for path separators `/`, if you're following along on Windows be sure to swap these separators for `\`.
1818

1919
The prerequisites differ by operating system:
2020

@@ -31,7 +31,7 @@ sudo apt-get update
3131
sudo apt-get install -y git cmake build-essential curl libcurl4-openssl-dev libssl-dev uuid-dev
3232
```
3333

34-
Verify the version of `cmake` is above **2.8.12** and the version of **GCC** is above **4.4.7**.
34+
Verify the version of `cmake` is **2.8.12** or greater and the version of **GCC** is **4.4.7** or greater.
3535

3636
```sh
3737
cmake --version
@@ -96,7 +96,7 @@ You can build and run the code using Visual Studio or `cmake` at the command lin
9696
1. To trace the code execution in Visual Studio, add a breakpoint to the `main` function in the *pnp_simple_thermostat.c* file.
9797
1. You can now run and debug the sample from the **Debug** menu.
9898

99-
The device is now ready to receive commands and property updates, and has started sending telemetry data to the hub. Keep the sample running as you complete the next steps.
99+
The device is now ready to receive commands and property updates, and is sending telemetry data to the hub. Keep the sample running as you complete the next steps.
100100

101101
### Use cmake to build the code
102102

@@ -142,7 +142,7 @@ cd iothub_client\samples\pnp\pnp_simple_thermostat\Debug
142142
> [!TIP]
143143
> To trace the code execution in Visual Studio on Windows, add a break point to the `main` function in the _pnp_simple_thermostat.c_ file.
144144
145-
The device is now ready to receive commands and property updates, and has started sending telemetry data to the hub. Keep the sample running as you complete the next steps.
145+
The device is now ready to receive commands and property updates, and is sending telemetry data to the hub. Keep the sample running as you complete the next steps.
146146

147147
## Use Azure IoT explorer to validate the code
148148

includes/iot-pnp-connect-device-csharp.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ author: dominicbetts
33
ms.author: dobett
44
ms.service: azure-iot
55
ms.topic: include
6-
ms.date: 11/17/2022
6+
ms.date: 02/14/2025
77
---
88

99
This tutorial shows you how to build a sample IoT Plug and Play device application, connect it to your IoT hub, and use the Azure IoT explorer tool to view the telemetry it sends. The sample application is written in C# and is included in the Azure IoT SDK for C#. A solution builder can use the Azure IoT explorer tool to understand the capabilities of an IoT Plug and Play device without the need to view any device code.
@@ -14,7 +14,7 @@ This tutorial shows you how to build a sample IoT Plug and Play device applicati
1414

1515
[!INCLUDE [iot-pnp-prerequisites](iot-pnp-prerequisites.md)]
1616

17-
You can run this tutorial on Linux or Windows. The shell commands in this tutorial follow the Linux convention for path separators '`/`', if you're following along on Windows be sure to swap these separators for '`\`'.
17+
You can run this tutorial on Linux or Windows. The shell commands in this tutorial follow the Linux convention for path separators `/`, if you're following along on Windows be sure to swap these separators for `\`.
1818

1919
* The latest [.NET SDK](https://dotnet.microsoft.com/download) for your platform.
2020
* [Git](https://git-scm.com/downloads).
@@ -46,7 +46,7 @@ To run the sample, run the following command:
4646
dotnet run
4747
```
4848

49-
The device is now ready to receive commands and property updates, and has started sending telemetry data to the hub. Keep the sample running as you complete the next steps.
49+
The device is now ready to receive commands and property updates, and is sending telemetry data to the hub. Keep the sample running as you complete the next steps.
5050

5151
## Use Azure IoT explorer to validate the code
5252

includes/iot-pnp-connect-device-java.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ author: dominicbetts
33
ms.author: dobett
44
ms.service: azure-iot
55
ms.topic: include
6-
ms.date: 11/17/2022
6+
ms.date: 02/14/2025
77
---
88

99
This tutorial shows you how to build a sample IoT Plug and Play device application, connect it to your IoT hub, and use the Azure IoT explorer tool to view the telemetry it sends. The sample application is written in Java and is included in the Azure IoT device SDK for Java. A solution builder can use the Azure IoT explorer tool to understand the capabilities of an IoT Plug and Play device without the need to view any device code.
@@ -14,7 +14,7 @@ This tutorial shows you how to build a sample IoT Plug and Play device applicati
1414

1515
[!INCLUDE [iot-pnp-prerequisites](iot-pnp-prerequisites.md)]
1616

17-
You can run this tutorial on Linux or Windows. The shell commands in this tutorial follow the Linux convention for path separators '`/`', if you're following along on Windows be sure to swap these separators for '`\`'.
17+
You can run this tutorial on Linux or Windows. The shell commands in this tutorial follow the Linux convention for path separators `/`, if you're following along on Windows be sure to swap these separators for `\`.
1818

1919
To complete this tutorial, install the following software in your local development environment:
2020

@@ -52,7 +52,7 @@ From the */device/iot-device-samples/pnp-device-sample/thermostat-device-sample*
5252
mvn exec:java -Dexec.mainClass="samples.com.microsoft.azure.sdk.iot.device.Thermostat"
5353
```
5454

55-
The device is now ready to receive commands and property updates, and has started sending telemetry data to the hub. Keep the sample running as you complete the next steps.
55+
The device is now ready to receive commands and property updates, and is sending telemetry data to the hub. Keep the sample running as you complete the next steps.
5656

5757
## Use Azure IoT explorer to validate the code
5858

includes/iot-pnp-connect-device-node.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ author: dominicbetts
33
ms.author: dobett
44
ms.service: azure-iot
55
ms.topic: include
6-
ms.date: 11/17/2022
6+
ms.date: 02/14/2025
77
---
88

99
This tutorial shows you how to build a sample IoT Plug and Play device application, connect it to your IoT hub, and use the Azure IoT explorer tool to view the telemetry it sends. The sample application is written in Node.js and is included in the Azure IoT device SDK for Node.js. A solution builder can use the Azure IoT explorer tool to understand the capabilities of an IoT Plug and Play device without the need to view any device code.
@@ -14,7 +14,7 @@ This tutorial shows you how to build a sample IoT Plug and Play device applicati
1414

1515
[!INCLUDE [iot-pnp-prerequisites](iot-pnp-prerequisites.md)]
1616

17-
You can run this tutorial on Linux or Windows. The shell commands in this tutorial follow the Linux convention for path separators '`/`', if you're following along on Windows be sure to swap these separators for '`\`'.
17+
You can run this tutorial on Linux or Windows. The shell commands in this tutorial follow the Linux convention for path separators `/`, if you're following along on Windows be sure to swap these separators for `\`.
1818

1919
To complete this tutorial, you need Node.js on your development machine. You can download the latest recommended version for multiple platforms from [nodejs.org](https://nodejs.org).
2020

@@ -74,7 +74,7 @@ Run the sample application to simulate an IoT Plug and Play device that sends te
7474
node pnp_simple_thermostat.js
7575
```
7676

77-
You see the following output, indicating the device has begun sending telemetry data to the hub, and is now ready to receive commands and property updates.
77+
You see the following output, indicating the device is sending telemetry data to the hub, and is now ready to receive commands and property updates.
7878

7979
![Device confirmation messages](media/iot-pnp-connect-device-node/device-confirmation-node.png)
8080

includes/iot-pnp-connect-device-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ author: dominicbetts
33
ms.author: dobett
44
ms.service: azure-iot
55
ms.topic: include
6-
ms.date: 11/17/2022
6+
ms.date: 02/14/2025
77
---
88

99
This tutorial shows you how to build a sample IoT Plug and Play device application, connect it to your IoT hub, and use the Azure IoT explorer tool to view the telemetry it sends. The sample application is written for Python and is included in the Azure IoT Hub Device SDK for Python. A solution builder can use the Azure IoT explorer tool to understand the capabilities of an IoT Plug and Play device without the need to view any device code.
@@ -28,7 +28,7 @@ In your local Python environment, install the package as follows:
2828
pip install azure-iot-device
2929
```
3030

31-
Clone the Python SDK IoT repository:
31+
Clone the Python SDK IoT repository:
3232

3333
```cmd/sh
3434
git clone --branch v2 https://github.com/Azure/azure-iot-sdk-python

0 commit comments

Comments
 (0)