|
6 | 6 | ms.topic: include
|
7 | 7 | ms.date: 09/10/2021
|
8 | 8 | ms.author: timlt
|
9 |
| - ms.custom: include file, devx-track-azurecli |
| 9 | + ms.custom: include file, devx-track-azurecli |
10 | 10 | ms.devlang: azurecli
|
11 | 11 | ---
|
12 | 12 |
|
@@ -35,33 +35,33 @@ Install the remaining prerequisites for your operating system.
|
35 | 35 | ### Linux or Raspberry Pi OS
|
36 | 36 | To complete this quickstart on Linux or Raspberry Pi OS, install the following software:
|
37 | 37 |
|
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: |
39 | 39 |
|
40 | 40 | ```sh
|
41 | 41 | sudo apt-get update
|
42 | 42 | sudo apt-get install -y git cmake build-essential curl libcurl4-openssl-dev libssl-dev uuid-dev
|
43 | 43 | ```
|
44 | 44 |
|
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. |
46 | 46 |
|
47 | 47 | ```sh
|
48 | 48 | cmake --version
|
49 | 49 | gcc --version
|
50 | 50 | ```
|
51 | 51 |
|
52 | 52 | ### 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. |
54 | 54 |
|
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. |
56 | 56 | > [!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**. |
58 | 58 | 1. In the installer **Workloads** tab, select the **Desktop Development with C++** workload.
|
59 | 59 | 1. Run the installation.
|
60 | 60 |
|
61 | 61 | [!INCLUDE [iot-hub-include-create-hub-iot-explorer](iot-hub-include-create-hub-iot-explorer.md)]
|
62 | 62 |
|
63 | 63 | ## 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. |
65 | 65 |
|
66 | 66 | ### Build the sample
|
67 | 67 | 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