Skip to content

Commit 73f4d86

Browse files
committed
removed simulated from other IoT Central articles
1 parent 894e81e commit 73f4d86

4 files changed

+24
-24
lines changed

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

Lines changed: 6 additions & 6 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-Samples/azure-iot-samples-csharp/tree/main/iot-hub/Samples/device/PnpDeviceSamples)
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

@@ -32,14 +32,14 @@ Install the following prerequisites on your development machine:
3232

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

35-
## Run a simulated device
36-
In this section, you configure your local environment, install the Azure IoT C# samples, and run a sample that creates a simulated temperature controller.
35+
## Run a device
36+
In this section, you configure your local environment, install the Azure IoT C# samples, and run a sample that creates a temperature controller.
3737

3838
### Configure your environment
3939

4040
1. Open a console such as Windows CMD, PowerShell, or Bash.
4141

42-
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.
42+
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.
4343

4444
**CMD (Windows)**
4545

@@ -106,13 +106,13 @@ In this section, you configure your local environment, install the Azure IoT C#
106106

107107
### Run the code
108108

109-
1. In your console, run the code sample. The sample creates a simulated temperature controller with thermostat sensors.
109+
1. In your console, run the code sample. The sample creates a temperature controller with thermostat sensors.
110110

111111
```console
112112
dotnet run
113113
```
114114

115-
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:
115+
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:
116116

117117
```output
118118
[10/09/2021 00:29:18]info: Microsoft.Azure.Devices.Client.Samples.TemperatureControllerSample[0]

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

Lines changed: 6 additions & 6 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-java/tree/main/device/iot-device-samples/pnp-device-sample)
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
- A development machine with Java SE Development Kit 8 or later. You can download the Java 8 (LTS) JDK for multiple platforms from [Download Zulu Builds of OpenJDK](https://www.azul.com/downloads/zulu-community/). In the installer, select the **Add to Path** option.
@@ -20,14 +20,14 @@ In this quickstart, you learn a basic Azure IoT application development workflow
2020

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

23-
## Run a simulated device
24-
In this section, you configure your local environment, install the Azure IoT Java device SDK, and run a sample that creates a simulated temperature controller.
23+
## Run a device
24+
In this section, you configure your local environment, install the Azure IoT Java device SDK, and run a sample that creates a temperature controller.
2525

2626
### Configure your environment
2727

2828
1. Open a console such as Windows CMD, PowerShell, or Bash.
2929

30-
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.
30+
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.
3131

3232
**Windows CMD**
3333

@@ -76,12 +76,12 @@ In this section, you configure your local environment, install the Azure IoT Jav
7676
cd device/iot-device-samples/pnp-device-sample/temperature-controller-device-sample
7777
```
7878

79-
1. In your console, run the following code sample. The sample creates a simulated temperature controller with thermostat sensors.
79+
1. In your console, run the following code sample. The sample creates a temperature controller with thermostat sensors.
8080
```console
8181
mvn exec:java -Dexec.mainClass="samples.com.microsoft.azure.sdk.iot.device.TemperatureController"
8282
```
8383

84-
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. After some initial provisioning details, the console start to output the telemetry for the temperature controller.
84+
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. After some initial provisioning details, the console start to output the telemetry for the temperature controller.
8585
8686
```output
8787
2021-05-13 15:39:26.411 DEBUG Mqtt:253 - Sending MQTT SUBSCRIBE packet for topic $iothub/twin/res/#

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

Lines changed: 6 additions & 6 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-node/tree/master/device/samples/javascript/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:
@@ -27,14 +27,14 @@ Install the following prerequisites on your development machine:
2727

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

30-
## Run a simulated device
31-
In this section, you configure your local environment, install the Azure IoT Node.js device SDK, and run a sample that creates a simulated temperature controller.
30+
## Run a device
31+
In this section, you configure your local environment, install the Azure IoT Node.js device SDK, and run a sample that creates a temperature controller.
3232

3333
### Configure your environment
3434

3535
1. Open a console such as Windows CMD, PowerShell, or Bash.
3636

37-
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.
37+
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.
3838

3939
**CMD (Windows)**
4040

@@ -96,12 +96,12 @@ In this section, you configure your local environment, install the Azure IoT Nod
9696

9797
### Run the code
9898

99-
1. In your console, run the following code sample from the SDK. The sample creates a simulated temperature controller with thermostat sensors.
99+
1. In your console, run the following code sample from the SDK. The sample creates a temperature controller with thermostat sensors.
100100
```console
101101
node pnpTemperatureController.js
102102
```
103103

104-
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:
104+
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:
105105
106106
```output
107107
registration succeeded

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

Lines changed: 6 additions & 6 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-python/tree/master/azure-iot-device/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:
@@ -27,14 +27,14 @@ Install the following prerequisites on your development machine:
2727

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

30-
## Run a simulated device
31-
In this section, you configure your local environment, install the Azure IoT Python device SDK, and run a sample that creates a simulated temperature controller.
30+
## Run a device
31+
In this section, you configure your local environment, install the Azure IoT Python device SDK, and run a sample that creates a temperature controller.
3232

3333
### Configure your environment
3434

3535
1. Open a console such as Windows CMD, PowerShell, or Bash.
3636

37-
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.
37+
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.
3838

3939
**CMD (Windows)**
4040

@@ -95,12 +95,12 @@ In this section, you configure your local environment, install the Azure IoT Pyt
9595

9696
### Run the code
9797

98-
1. In your console, run the following code sample from the SDK. The sample creates a simulated temperature controller with thermostat sensors.
98+
1. In your console, run the following code sample from the SDK. The sample creates a temperature controller with thermostat sensors.
9999
```console
100100
python3 temp_controller_with_thermostats.py
101101
```
102102

103-
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:
103+
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:
104104
105105
```output
106106
Device was assigned

0 commit comments

Comments
 (0)