Skip to content

Commit a9a01cf

Browse files
committed
removed simulated from the rest of the hub qs articles
1 parent 52f39be commit a9a01cf

4 files changed

+20
-20
lines changed

includes/iot-develop-send-telemetry-iot-hub-csharp.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-Samples/azure-iot-samples-csharp/tree/master/iot-hub/Samples/device/PnpDeviceSamples)
1313

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

1616
## Prerequisites
1717

@@ -37,9 +37,9 @@ Install the following prerequisites on your development machine except where not
3737

3838
[!INCLUDE [iot-hub-include-create-hub-iot-explorer](iot-hub-include-create-hub-iot-explorer.md)]
3939

40-
## Run a simulated device
40+
## Run a device
4141

42-
In this section, you'll use the C# SDK to send messages from a simulated device to your IoT hub. You'll run a sample that implements a temperature controller with two thermostat sensors.
42+
In this section, you'll 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.
4343

4444
1. Open a new console such as Windows CMD, PowerShell, or Bash. In the following steps, you'll use this console to install the Node.js SDK and work with Node.js sample code.
4545

@@ -72,7 +72,7 @@ In this section, you'll use the C# SDK to send messages from a simulated device
7272

7373
This command installs the proper dependencies as specified in the *TemperatureController.csproj* file.
7474

75-
1. Set both of the following environment variables, to enable your simulated device to connect to Azure IoT.
75+
1. Set both of the following environment variables, to enable your device to connect to Azure IoT.
7676
* Set an environment variable called `IOTHUB_DEVICE_CONNECTION_STRING`. For the variable value, use the device connection string that you saved in the previous section.
7777
* Set an environment variable called `IOTHUB_DEVICE_SECURITY_TYPE`. For the variable, use the literal string value `connectionString`.
7878

@@ -134,7 +134,7 @@ To read telemetry sent by individual device components, you can use the plug and
134134

135135
To view device telemetry with Azure CLI:
136136

137-
1. Run the [az iot hub monitor-events](/cli/azure/iot/hub#az_iot_hub_monitor_events) command to monitor events sent from the simulated device to your IoT hub. Use the names that you created previously in Azure IoT for your device and IoT hub.
137+
1. Run the [az iot hub monitor-events](/cli/azure/iot/hub#az_iot_hub_monitor_events) command to monitor events sent from the device to your IoT hub. Use the names that you created previously in Azure IoT for your device and IoT hub.
138138

139139
```azurecli
140140
az iot hub monitor-events --output table --device-id mydevice --hub-name {YourIoTHubName}

includes/iot-develop-send-telemetry-iot-hub-java.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-java/tree/main/device/iot-device-samples/pnp-device-sample)
1313

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

1616
## Prerequisites
1717
- If you don't have an Azure subscription, [create one for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
@@ -25,16 +25,16 @@ In this quickstart, you learn a basic Azure IoT application development workflow
2525

2626
[!INCLUDE [iot-hub-include-create-hub-iot-explorer](iot-hub-include-create-hub-iot-explorer.md)]
2727

28-
## Run a simulated device
29-
In this section, you use the Java SDK to send messages from a simulated device to your IoT hub. You'll run a sample that implements a temperature controller with two thermostat sensors.
28+
## Run a device
29+
In this section, you use the Java 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.
3030

3131
### Configure your environment
3232
1. Open a console to install the Azure IoT Java device SDK, build, and run the code sample. You'll use this console in the following steps.
3333

3434
> [!NOTE]
3535
> If you're using a local installation of Azure CLI, you might now have two console windows open. Be sure to enter the commands in this section in the console you just opened, not the one that you've been using for the CLI.
3636
37-
1. Set the following environment variables, to enable your simulated device to connect to Azure IoT.
37+
1. Set the following environment variables, to enable your device to connect to Azure IoT.
3838
* Set an environment variable called `IOTHUB_DEVICE_CONNECTION_STRING`. For the variable value, use the device connection string that you saved in the previous section.
3939
* Set an environment variable called `IOTHUB_DEVICE_SECURITY_TYPE`. For the variable, use the literal string value `connectionString`.
4040

@@ -106,7 +106,7 @@ To read telemetry sent by individual device components, you can use the plug and
106106

107107
To view device telemetry with Azure CLI:
108108

109-
1. Run the [az iot hub monitor-events](/cli/azure/iot/hub#az_iot_hub_monitor_events) command to monitor events sent from the simulated device to your IoT hub. Use the names that you created previously in Azure IoT for your device and IoT hub.
109+
1. Run the [az iot hub monitor-events](/cli/azure/iot/hub#az_iot_hub_monitor_events) command to monitor events sent from the device to your IoT hub. Use the names that you created previously in Azure IoT for your device and IoT hub.
110110

111111
```azurecli
112112
az iot hub monitor-events --output table --device-id mydevice --hub-name {YourIoTHubName}

includes/iot-develop-send-telemetry-iot-hub-node.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-node/tree/master/device/samples/javascript/pnp)
1313

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

1616
## Prerequisites
1717
This quickstart runs on Windows, Linux, and Raspberry Pi. It's been tested on the following OS and device versions:
@@ -32,8 +32,8 @@ Install the following prerequisites on your development machine except where not
3232

3333
[!INCLUDE [iot-hub-include-create-hub-iot-explorer](iot-hub-include-create-hub-iot-explorer.md)]
3434

35-
## Run a simulated device
36-
In this section, you'll use the Node.js SDK to send messages from a simulated device to your IoT hub. You'll run a sample that implements a temperature controller with two thermostat sensors.
35+
## Run a device
36+
In this section, you'll use the Node.js 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.
3737

3838
1. Open a new console such as Windows CMD, PowerShell, or Bash. In the following steps, you'll use this console to install the Node.js SDK and work with Node.js sample code.
3939

@@ -66,7 +66,7 @@ In this section, you'll use the Node.js SDK to send messages from a simulated de
6666

6767
This command installs the proper dependencies as specified in the *package.json* file in the device samples directory.
6868

69-
1. Set both of the following environment variables, to enable your simulated device to connect to Azure IoT.
69+
1. Set both of the following environment variables, to enable your device to connect to Azure IoT.
7070
* Set an environment variable called `IOTHUB_DEVICE_CONNECTION_STRING`. For the variable value, use the device connection string that you saved in the previous section.
7171
* Set an environment variable called `IOTHUB_DEVICE_SECURITY_TYPE`. For the variable, use the literal string value `connectionString`.
7272

@@ -128,7 +128,7 @@ To read telemetry sent by individual device components, you can use the plug and
128128

129129
To view device telemetry with Azure CLI:
130130

131-
1. Run the [az iot hub monitor-events](/cli/azure/iot/hub#az_iot_hub_monitor_events) command to monitor events sent from the simulated device to your IoT hub. Use the names that you created previously in Azure IoT for your device and IoT hub.
131+
1. Run the [az iot hub monitor-events](/cli/azure/iot/hub#az_iot_hub_monitor_events) command to monitor events sent from the device to your IoT hub. Use the names that you created previously in Azure IoT for your device and IoT hub.
132132

133133
```azurecli
134134
az iot hub monitor-events --output table --device-id mydevice --hub-name {YourIoTHubName}

includes/iot-develop-send-telemetry-iot-hub-python.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-python/tree/master/azure-iot-device/samples/pnp)
1313

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

1616
## Prerequisites
1717
This quickstart runs on Windows, Linux, and Raspberry Pi. It's been tested on the following OS and device versions:
@@ -32,8 +32,8 @@ Install the following prerequisites on your development machine except where not
3232

3333
[!INCLUDE [iot-hub-include-create-hub-iot-explorer](iot-hub-include-create-hub-iot-explorer.md)]
3434

35-
## Run a simulated device
36-
In this section, you use the Python SDK to send messages from a simulated device to your IoT hub. You'll run a sample that implements a temperature controller with two thermostat sensors.
35+
## Run a device
36+
In this section, you use the Python 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.
3737

3838
1. Open a new console such as Windows CMD, PowerShell, or Bash. In the following steps, you'll use this console to install the Python SDK and work with the Python sample code.
3939

@@ -63,7 +63,7 @@ In this section, you use the Python SDK to send messages from a simulated device
6363
```console
6464
pip3 install azure-iot-device
6565
```
66-
1. Set the following environment variables, to enable your simulated device to connect to Azure IoT.
66+
1. Set the following environment variables, to enable your device to connect to Azure IoT.
6767
* Set an environment variable called `IOTHUB_DEVICE_CONNECTION_STRING`. For the variable value, use the device connection string that you saved in the previous section.
6868
* Set an environment variable called `IOTHUB_DEVICE_SECURITY_TYPE`. For the variable, use the literal string value `connectionString`.
6969

@@ -125,7 +125,7 @@ To read telemetry sent by individual device components, you can use the plug and
125125

126126
To view device telemetry with Azure CLI:
127127

128-
1. Run the [az iot hub monitor-events](/cli/azure/iot/hub#az_iot_hub_monitor_events) command to monitor events sent from the simulated device to your IoT hub. Use the names that you created previously in Azure IoT for your device and IoT hub.
128+
1. Run the [az iot hub monitor-events](/cli/azure/iot/hub#az_iot_hub_monitor_events) command to monitor events sent from the device to your IoT hub. Use the names that you created previously in Azure IoT for your device and IoT hub.
129129

130130
```azurecli
131131
az iot hub monitor-events --output table --device-id mydevice --hub-name {YourIoTHubName}

0 commit comments

Comments
 (0)