Skip to content

Commit 49bc8f6

Browse files
committed
Fix typos
1 parent f96f441 commit 49bc8f6

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

articles/iot-hub/iot-hub-arduino-iot-devkit-az3166-get-started.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Follow these steps to prepare the development environment for DevKit:
126126
1. Install [Visual Studio Code](https://code.visualstudio.com/), a cross platform source code editor with powerful developer tooling, like IntelliSense code completion and debugging.
127127

128128
1. Look for **Azure IoT Workbench** in the extension marketplace and install it.
129-
![Install Azure IoT Workbench]((media/iot-hub-arduino-devkit-az3166-get-started/getting-started/install-workbench.png)
129+
![Install Azure IoT Workbench](media/iot-hub-arduino-devkit-az3166-get-started/getting-started/install-workbench.png)
130130
Together with the IoT Workbench, other dependent extensions will be installed.
131131

132132
1. Open **File > Preference > Settings** and add following lines to configure Arduino.
@@ -147,11 +147,11 @@ Follow these steps to prepare the development environment for DevKit:
147147
```
148148

149149
1. Click `F1` to open the command palette, type and select **Arduino: Board Manager**. Search for **AZ3166** and install the latest version.
150-
![Install DevKit SDK]((media/iot-hub-arduino-devkit-az3166-get-started/getting-started/install-sdk.png)
150+
![Install DevKit SDK](media/iot-hub-arduino-devkit-az3166-get-started/getting-started/install-sdk.png)
151151

152152
### Install ST-Link drivers
153153

154-
[ST-Link/V2](http://www.st.com/en/development-tools/st-link-v2.html) is the USB interface that IoT DevKit uses to communicate with your development machine. Follow the platform specific steps to allow the machine access to your device.
154+
[ST-Link/V2](http://www.st.com/en/development-tools/st-link-v2.html) is the USB interface that IoT DevKit uses to communicate with your development machine. Follow the OS-specific steps to allow the machine access to your device.
155155

156156
* **Windows**: Download and install USB driver from [STMicroelectronics website](http://www.st.com/en/development-tools/stsw-link009.html).
157157
* **macOS**: No driver is required for macOS.
@@ -173,23 +173,23 @@ Now you are all set with preparing and configuring your development environment.
173173
1. Make sure your IoT DevKit is **not connected** to your computer. Start VS Code first, and then connect the DevKit to your computer.
174174

175175
1. In the bottom right status bar, check the **MXCHIP AZ3166** is shown as selected board and serial port with **STMicroelectronics** is used.
176-
![Select board and COM]((media/iot-hub-arduino-devkit-az3166-get-started/getting-started/select-board.png)
176+
![Select board and COM](media/iot-hub-arduino-devkit-az3166-get-started/getting-started/select-board.png)
177177

178178
1. Click `F1` to open the command palette, type and select **IoT Workbench: Examples**. Then select **IoT DevKit** as board.
179179

180180
1. In the IoT Workbench Examples page, find **Get Started** and click **Open Sample**. Then selects the default path to download the sample code.
181-
![Open sample]((media/iot-hub-arduino-devkit-az3166-get-started/getting-started/open-sample.png)
181+
![Open sample](media/iot-hub-arduino-devkit-az3166-get-started/getting-started/open-sample.png)
182182

183183
1. In the new opened project window, click `F1` to open the command palette, type and select **IoT Workbench: Cloud**, then select **Azure Provision**. Follow the step by step guide to finish provisioning your Azure IoT Hub and creating the device.
184-
![Cloud provision]((media/iot-hub-arduino-devkit-az3166-get-started/getting-started/cloud-provision.png)
184+
![Cloud provision](media/iot-hub-arduino-devkit-az3166-get-started/getting-started/cloud-provision.png)
185185

186186
1. Click `F1` to open the command palette, type and select **IoT Workbench: Device**, then select **Config Device Settings > Select IoT Hub Device Connection String**.
187187

188188
1. On DevKit, hold down **button A**, push and release the **reset** button, and then release **button A**. Your DevKit enters configuration mode and saves the connection string.
189-
![Connection string]((media/iot-hub-arduino-devkit-az3166-get-started/getting-started/connection-string.png)
189+
![Connection string](media/iot-hub-arduino-devkit-az3166-get-started/getting-started/connection-string.png)
190190

191191
1. Click `F1` again, type and select **IoT Workbench: Device**, then select **Device Upload**.
192-
![Arduino upload]((media/iot-hub-arduino-devkit-az3166-get-started/getting-started/arduino-upload.png)
192+
![Arduino upload](media/iot-hub-arduino-devkit-az3166-get-started/getting-started/arduino-upload.png)
193193

194194
The DevKit reboots and starts running the code.
195195

@@ -201,14 +201,14 @@ The DevKit reboots and starts running the code.
201201
### View the telemetry sent to Azure IoT Hub
202202

203203
Click the power plug icon on the status bar to open the Serial Monitor:
204-
![Serial monitor]((media/iot-hub-arduino-devkit-az3166-get-started/getting-started/serial-monitor.png)
204+
![Serial monitor](media/iot-hub-arduino-devkit-az3166-get-started/getting-started/serial-monitor.png)
205205

206206
The sample application is running successfully when you see the following results:
207207

208208
* The Serial Monitor displays the message sent to the IoT Hub.
209209
* The LED on the MXChip IoT DevKit is blinking.
210210

211-
![Serial monitor output]((media/iot-hub-arduino-devkit-az3166-get-started/getting-started/result-serial-output.png)
211+
![Serial monitor output](media/iot-hub-arduino-devkit-az3166-get-started/getting-started/result-serial-output.png)
212212

213213
### View the telemetry received by Azure IoT Hub
214214

@@ -217,21 +217,21 @@ You can use [Azure IoT Toolkit](https://marketplace.visualstudio.com/items?itemN
217217
1. In Visual Studio Code, look for **Azure IoT Toolkit** in the extension marketplace and install it.
218218

219219
1. Log in [Azure portal](https://portal.azure.com/), find the IoT Hub you created.
220-
![Azure portal]((media/iot-hub-arduino-devkit-az3166-get-started/getting-started/azure-iot-hub-portal.png)
220+
![Azure portal](media/iot-hub-arduino-devkit-az3166-get-started/getting-started/azure-iot-hub-portal.png)
221221

222222
1. In the **Shared access policies** pane, click the **iothubowner policy**, and write down the Connection string of your IoT hub.
223-
![Azure IoT Hub connection string]((media/iot-hub-arduino-devkit-az3166-get-started/getting-started/azure-portal-conn-string.png)
223+
![Azure IoT Hub connection string](media/iot-hub-arduino-devkit-az3166-get-started/getting-started/azure-portal-conn-string.png)
224224

225225
1. In Visual Studio Code, expand **AZURE IOT HUB DEVICES** on the bottom left corner.
226-
![Azure IoT Hub devices]((media/iot-hub-arduino-devkit-az3166-get-started/getting-started/azure-iot-toolkit-devices.png)
226+
![Azure IoT Hub devices](media/iot-hub-arduino-devkit-az3166-get-started/getting-started/azure-iot-toolkit-devices.png)
227227

228228
1. Click Set **IoT Hub Connection String** in context menu.
229-
![Set Azure IoT Hub connection string]((media/iot-hub-arduino-devkit-az3166-get-started/getting-started/azure-iot-toolkit-conn-string.png)
229+
![Set Azure IoT Hub connection string](media/iot-hub-arduino-devkit-az3166-get-started/getting-started/azure-iot-toolkit-conn-string.png)
230230

231231
1. Click **IoT: Start monitoring D2C message** in context menu.
232232

233233
1. In **OUTPUT** pane, you can see the incoming D2C messages to the IoT Hub.
234-
![D2C message]((media/iot-hub-arduino-devkit-az3166-get-started/getting-started/azure-iot-toolkit-console.png)
234+
![D2C message](media/iot-hub-arduino-devkit-az3166-get-started/getting-started/azure-iot-toolkit-console.png)
235235

236236
## Problems and feedback
237237

0 commit comments

Comments
 (0)