Skip to content

Commit 76ab166

Browse files
Merge pull request #231372 from timlt/hub-telemetry-update
Update iot hub telemetry article for VS version
2 parents bc3ba78 + 0f5ad9e commit 76ab166

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

articles/iot-develop/quickstart-send-telemetry-iot-hub.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,4 @@ As a next step, explore the following articles to learn more about building devi
7474
> [!div class="nextstepaction"]
7575
> [Control a device connected to an IoT hub](../iot-hub/quickstart-control-device.md)
7676
> [!div class="nextstepaction"]
77-
> [Send telemetry to IoT Central](quickstart-send-telemetry-central.md)
78-
> [!div class="nextstepaction"]
79-
> [Connect an MXCHIP AZ3166 devkit to IoT Central](quickstart-devkit-mxchip-az3166.md)
77+
> [Build a device solution with IoT Hub](set-up-environment.md)

includes/iot-develop-send-telemetry-iot-hub-c.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
ms.topic: include
77
ms.date: 09/10/2021
88
ms.author: timlt
9-
ms.custom: include file, devx-track-azurecli
9+
ms.custom: include file, devx-track-azurecli
1010
ms.devlang: azurecli
1111
---
1212

@@ -35,33 +35,33 @@ Install the remaining prerequisites for your operating system.
3535
### Linux or Raspberry Pi OS
3636
To complete this quickstart on Linux or Raspberry Pi OS, install the following software:
3737

38-
Install **GCC**, **Git**, **cmake**, and the required dependencies using the `apt-get` command:
38+
Install **GCC**, **Git**, **CMake**, and the required dependencies using the `apt-get` command:
3939

4040
```sh
4141
sudo apt-get update
4242
sudo apt-get install -y git cmake build-essential curl libcurl4-openssl-dev libssl-dev uuid-dev
4343
```
4444

45-
Verify the version of `cmake` is above **2.8.12** and the version of **GCC** is above **4.4.7**.
45+
Verify the version of `cmake` is **2.8.12** or greater, and the version of **GCC** is **4.4.7** or greater.
4646

4747
```sh
4848
cmake --version
4949
gcc --version
5050
```
5151

5252
### Windows
53-
To complete this quickstart on Windows, install Visual Studio 2019 and add the required components for C and C++ development.
53+
To complete this quickstart on Windows, install Visual Studio 2022 and add the required components for C and C++ development.
5454

55-
1. For new users, install [Visual Studio (Community, Professional, or Enterprise) 2019](https://visualstudio.microsoft.com/downloads/). Download the edition you want to install, and start the installer.
55+
1. For new users, install [Visual Studio (Community, Professional, or Enterprise) 2022](https://visualstudio.microsoft.com/downloads/). Download the edition you want to install, and start the installer.
5656
> [!NOTE]
57-
> For existing Visual Studio 2019 users, select Windows **Start**, type *Visual Studio Installer*, and start the installer.
57+
> For existing Visual Studio 2022 users, select Windows **Start**, type *Visual Studio Installer*, run the installer, and then select **Modify**.
5858
1. In the installer **Workloads** tab, select the **Desktop Development with C++** workload.
5959
1. Run the installation.
6060

6161
[!INCLUDE [iot-hub-include-create-hub-iot-explorer](iot-hub-include-create-hub-iot-explorer.md)]
6262

6363
## Run the device sample
64-
In this section, you use the C SDK to send messages from a device to your IoT hub. You'll run a sample that implements a temperature controller with two thermostat sensors.
64+
In this section, you use the C SDK to send messages from a device to your IoT hub. You run a sample that implements a temperature controller with two thermostat sensors.
6565

6666
### Build the sample
6767
1. Open a new console to install the Azure IoT C device SDK and run the code sample. For Windows, select **Start**, type *Developer Command Prompt for VS 2019*, and open the console. For Linux and Raspberry Pi OS, open a terminal for Bash commands.

0 commit comments

Comments
 (0)