Skip to content

Commit e1d72a4

Browse files
committed
Remove simulated term from device app developer qs articles
1 parent 59d8d2a commit e1d72a4

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ To remove the Azure IoT Central sample application and all its devices and resou
6868

6969
## Next steps
7070

71-
In this quickstart, you learned a basic Azure IoT application workflow for securely connecting a device to the cloud and sending device-to-cloud telemetry. You used Azure IoT Central to create an application and a device instance. Then you used an Azure IoT device SDK to create a simulated device, connect to IoT Central, and send telemetry. You also used IoT Central to monitor the telemetry.
71+
In this quickstart, you learned a basic Azure IoT application workflow for securely connecting a device to the cloud and sending device-to-cloud telemetry. You used Azure IoT Central to create an application and a device instance. Then you used an Azure IoT device SDK to create a temperature controller, connect to IoT Central, and send telemetry. You also used IoT Central to monitor the telemetry.
7272

7373
As a next step, explore the following articles to learn more about building device solutions with Azure IoT.
7474

includes/iot-develop-create-central-app-with-device.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ To create a new application:
3333
:::image type="content" source="media/iot-develop-create-central-app-with-device/iot-central-created.png" alt-text="IoT Central new application dashboard":::
3434

3535
## Add a device
36-
In this section, you add a new device to your IoT Central application. The device is an instance of a device template that represents a real or simulated device that you'll connect to the application.
36+
In this section, you add a new device to your IoT Central application. The device is an instance of a device template that represents a device that you'll connect to the application.
3737

3838
To create a new device:
3939
1. In the left pane select **Devices**, then select **+New**.
4040
1. Leave **Device template** set to *Unassigned*.
4141

42-
> [!NOTE]
43-
> In this quickstart for simplicity, you connect a simulated device that uses an unassigned template. If you continue using IoT Central to manage devices, you'll learn about using device templates. For an overview of working with device templates, see [Quickstart: Add a simulated device to your IoT Central application](../articles/iot-central/core/quick-create-simulated-device.md).
4442
1. Set a friendly **Device name** and **Device ID**. Optionally, use the generated values.
4543
:::image type="content" source="media/iot-develop-create-central-app-with-device/iot-central-create-device.png" alt-text="IoT Central new device dialog":::
44+
45+
1. Make sure that **Simulate this device?** is set to *No*.
4646
1. Select **Create**.
4747

4848
The created device appears in the **All devices** list.

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
[![Browse code](../articles/iot-develop/media/common/browse-code.svg)](https://github.com/Azure/azure-iot-sdk-c/tree/master/iothub_client/samples/pnp)
1313

14-
In this quickstart, you learn a basic Azure IoT application development workflow. First you create an Azure IoT Central application for hosting devices. Then you use an Azure IoT device SDK sample to run a simulated temperature controller, connect it securely to IoT Central, and send telemetry.
14+
In this quickstart, you learn a basic Azure IoT application development workflow. First you create an Azure IoT Central application for hosting devices. Then you use an Azure IoT device SDK sample to create a temperature controller, connect it securely to IoT Central, and send telemetry. The temperature controller sample application runs on your local machine and generates simulated sensor data to send to IoT Central.
1515

1616
## Prerequisites
1717
This quickstart runs on Windows, Linux, and Raspberry Pi. It's been tested on the following OS and device versions:
@@ -51,14 +51,14 @@ To complete this quickstart on Windows, install Visual Studio 2019 and add the r
5151

5252
[!INCLUDE [iot-develop-create-central-app-with-device](iot-develop-create-central-app-with-device.md)]
5353

54-
## Run a simulated device
55-
In this section, you configure your local environment, install the Azure IoT C device SDK, and run a sample that creates a simulated temperature controller.
54+
## Run a device
55+
In this section, you configure your local environment, install the Azure IoT C device SDK, and run a sample that creates a temperature controller.
5656

5757
### Configure your environment
5858

5959
1. Open a 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.
6060

61-
1. Set the following environment variables, using the appropriate commands for your console. The simulated device uses these values to connect to IoT Central. For `IOTHUB_DEVICE_DPS_ID_SCOPE`, `IOTHUB_DEVICE_DPS_DEVICE_KEY`, and `IOTHUB_DEVICE_DPS_DEVICE_ID`, use the device connection values that you saved previously.
61+
1. Set the following environment variables, using the appropriate commands for your console. The device uses these values to connect to IoT Central. For `IOTHUB_DEVICE_DPS_ID_SCOPE`, `IOTHUB_DEVICE_DPS_DEVICE_KEY`, and `IOTHUB_DEVICE_DPS_DEVICE_ID`, use the device connection values that you saved previously.
6262

6363
**CMD**
6464

@@ -121,7 +121,7 @@ In this section, you configure your local environment, install the Azure IoT C d
121121
cmake/iothub_client/samples/pnp/pnp_temperature_controller/pnp_temperature_controller
122122
```
123123

124-
After your simulated device connects to your IoT Central application, it connects to the device instance you created in the application and begins to send telemetry. The connection details and telemetry output are shown in your console:
124+
After your device connects to your IoT Central application, it connects to the device instance you created in the application and begins to send telemetry. The connection details and telemetry output are shown in your console:
125125
126126
```output
127127
Info: Initiating DPS client to retrieve IoT Hub connection information

0 commit comments

Comments
 (0)