Skip to content

Commit a0206e6

Browse files
Updated content
1 parent 25e4319 commit a0206e6

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed
Loading
Loading
Loading
Loading
Loading

content/tutorials/projects/iot-air-quality-checker/iot-air-quality-checker.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ Of course you can reach the same setup using a breadboard, floating wires and sp
4343

4444
In this project we are going to use [Arduino Cloud](https://create.arduino.cc/iot), where you can create IoT applications in a few simple steps.
4545

46-
We can just start connecting the MKR WiFi 1010 to the Web Editor.
46+
We can just start connecting the MKR WiFi 1010 to the Cloud Editor.
4747

48-
You can then find more information on the Web Editor setup for the MKR WiFi 1010 at [this link.](https://www.arduino.cc/en/Guide/MKRWiFi1010)
48+
You can then find more information on the Cloud Editor setup for the MKR WiFi 1010 at [this link.](https://www.arduino.cc/en/Guide/MKRWiFi1010)
4949

5050
After connecting your Arduino to the usb port, be sure to have selected the right board and the right port.
5151

@@ -55,7 +55,7 @@ At this point, since the MKR WiFi 1010 is a Cloud compatible board, we can start
5555

5656
### Arduino Cloud Setup
5757

58-
Thanks to this platform, the dashboard creation will be really easy, and the base of the Arduino code will be auto-generated, and usable directly on the Arduino Web Editor.
58+
Thanks to this platform, the dashboard creation will be really easy, and the base of the Arduino code will be auto-generated, and usable directly on the Arduino Cloud Editor.
5959

6060
This is one of the feature of Arduino Cloud, many interesting others are described in [this official blog post](https://blog.arduino.cc/2021/06/18/14-awesome-arduino-cloud-features-you-never-knew-existed)!
6161

@@ -72,11 +72,11 @@ Let's start with the device:
7272
The configuration is really easy:
7373

7474
* Choose the board vendor (in our case it's Arduino).
75-
* Choose which board we are going to use (we'll see already our board, If we have previously connected it to the Web Editor).
75+
* Choose which board we are going to use (we'll see already our board, If we have previously connected it to the Cloud Editor).
7676
* Wait for the an update for securing the communication.
7777
* Click the done button.
7878

79-
![Setup your Arduino device.](assets/screenshot_2021-06-28_09-44-48_mOOnTEkuFO.png)
79+
![Setup your Arduino device](assets/DeviceSetup.png)
8080

8181
Now it's time to create the variables!
8282

@@ -127,18 +127,18 @@ Next step is to setup the Wifi Credentials that will be used by the board to con
127127

128128
### The Auto-Generated Sketch
129129

130-
After creating variables, in the *sketch* section we'll find an auto-generated sketch, than we can open directly in the Web Editor by pressing the *Open full editor* button!
130+
After creating variables, in the *sketch* section we'll find an auto-generated sketch.
131131

132-
![Click Open full editor.](assets/image_SlwQmN3MEj.png)
132+
![Sketch editor tab](sketchTab.png)
133133

134-
Now we continue editing the sketch in the Web Editor.
134+
Now we continue editing the sketch in the Cloud Editor.
135135

136136
We'll find a few more tabs, in particular:
137137

138138
* thingProperties.h tab - that we dn't have to edit! - where we'll find the variables declared prevoiously, and the unique ID of the thing and it's properties.
139139
* Secret tab where we'll find the WiFi credentials.
140140

141-
![The different tabs.](assets/screenshot_2021-06-25_01-25-58_EIfc27QSfO.png)
141+
![The different tabs](assets/thingsProperties.png)
142142

143143
Being separated from the main sketch tab, we can share without problem our sketch: those information will not be shown, since strictly related to our own thing and wifi connection!
144144

@@ -221,13 +221,13 @@ We'll use it to display measurements, but because of we'll have a shared dashboa
221221

222222
We have to use the *Grove Oled Display 0.96* library, and we can install it from the Library Manager. Just search for "oled" and then star the library, in order to have it available!
223223

224-
![Search for the oled library.](assets/image_ViO3iy1h3Y.png)
224+
![Search for the oled library](image.png)
225225

226226
We'll find all the needed code in the **OLED_Hello_World** example.
227227

228228
This display is able to show up to 8 rows, 16 chars each. In order to visualize information in the display, we have to place it using *XY* coordinate, where the top left corner is **X0**, **Y0**, and X is for the columns and Y for the rows
229229

230-
![Coordinates on the oled display.](assets/image_1MoDqZvQwk.png)
230+
![Coordinates on the oled display](assets/image_1MoDqZvQwk.png)
231231

232232
Let's start including the required libraries in the header:
233233

@@ -361,11 +361,11 @@ That's it! the complete sketch can be found below.
361361

362362
Last step is to create a custom Dashboard.
363363

364-
Just press the **Go to IoT Cloud** button to switch from the Web Editor to the Arduino Cloud.
364+
Just press the **Go to IoT Cloud** button to switch from the Cloud Editor to the Arduino Cloud.
365365

366366
Here switch to the Dashboards menu, and then *BUILD DASHBOARD*
367367

368-
![Switch to the dashboards menu, and then choose build dashboard.](assets/image_rK7E2bPuef.png)
368+
![Switch to the dashboards menu, and then choose build dashboard](assets/createDashboard.png)
369369

370370
Now we can start building the new dashboard, switching in edit mode.
371371

Loading

0 commit comments

Comments
 (0)