You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do you ever worry about the air quality at home, in which we past lot of time recently, due to the pandemic?
22
+
Do you ever think about the air quality in your home, where we spend so much of our time every day?
23
23
24
24
Or in your DIY lab in the middle of 3d printers / saw / cnc / lasercutter?
25
25
@@ -43,9 +43,9 @@ Of course you can reach the same setup using a breadboard, floating wires and sp
43
43
44
44
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.
45
45
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.
47
47
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)
49
49
50
50
After connecting your Arduino to the usb port, be sure to have selected the right board and the right port.
51
51
@@ -55,7 +55,7 @@ At this point, since the MKR WiFi 1010 is a Cloud compatible board, we can start
55
55
56
56
### Arduino Cloud Setup
57
57
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.
59
59
60
60
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)!
61
61
@@ -72,11 +72,11 @@ Let's start with the device:
72
72
The configuration is really easy:
73
73
74
74
* 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).
76
76
* Wait for the an update for securing the communication.
77
77
* Click the done button.
78
78
79
-

79
+

80
80
81
81
Now it's time to create the variables!
82
82
@@ -127,18 +127,18 @@ Next step is to setup the Wifi Credentials that will be used by the board to con
127
127
128
128
### The Auto-Generated Sketch
129
129
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.
131
131
132
-

132
+

133
133
134
-
Now we continue editing the sketch in the Web Editor.
134
+
Now we continue editing the sketch in the Cloud Editor.
135
135
136
136
We'll find a few more tabs, in particular:
137
137
138
138
* 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.
139
139
* Secret tab where we'll find the WiFi credentials.
140
140
141
-

141
+

142
142
143
143
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!
144
144
@@ -221,13 +221,13 @@ We'll use it to display measurements, but because of we'll have a shared dashboa
221
221
222
222
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!
223
223
224
-

224
+

225
225
226
226
We'll find all the needed code in the **OLED_Hello_World** example.
227
227
228
228
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
229
229
230
-

230
+

231
231
232
232
Let's start including the required libraries in the header:
233
233
@@ -361,11 +361,11 @@ That's it! the complete sketch can be found below.
361
361
362
362
Last step is to create a custom Dashboard.
363
363
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.
365
365
366
366
Here switch to the Dashboards menu, and then *BUILD DASHBOARD*
367
367
368
-

368
+

369
369
370
370
Now we can start building the new dashboard, switching in edit mode.
0 commit comments