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
To configure the Arduino IoT cloud you can follow the tutorial [Getting Started with the Arduino IoT Cloud](/arduino-cloud/getting-started/iot-cloud-getting-started).
90
+
To configure the Arduino IoT cloud you can follow the tutorial [Getting Started with the Arduino IoT Cloud](https://docs.arduino.cc/arduino-cloud/getting-started/iot-cloud-getting-started).
91
91
92
92
Create a new Thing at [https://create.arduino.cc/iot/things](https://create.arduino.cc/iot/things), you can call it "PRO - Portenta and Nicla". You will need to attach the Portenta H7 as a new device to your **Thing setup.** After that, go to **Variables**, click the **add** button and select a float variable called **temperature** to store the temperature readings.
93
93
@@ -111,7 +111,7 @@ First include the headers that you need and declare the temperature sensor by ad
111
111
Sensor tempSensor(SENSOR_ID_TEMP);
112
112
```
113
113
114
-
***You can find all the Sensor IDs at <https://docs.arduino.cc/tutorials/nicla-sense-me/cheat-sheet#sensor-ids>.***
114
+
***You can find all the Sensor IDs at [https://docs.arduino.cc/tutorials/nicla-sense-me/cheat-sheet#sensor-ids](https://docs.arduino.cc/tutorials/nicla-sense-me/cheat-sheet#sensor-ids).***
115
115
116
116
Inside `void setup()` initialize the `Serial` communication, set up the variables and configuration for the Arduino IoT Cloud (properties) and wait until the **Portenta H7** is connected to the Wi-Fi and IoT Cloud. At this point, the communication with the **Nicla Sense ME** will be set up and you can start configuring the temperature sensor.
117
117
@@ -183,7 +183,7 @@ The Sketch:
183
183
184
184
float temperature;
185
185
186
-
Variables which are marked as READ/WRITE in the Cloud Thing will also have functions
186
+
Variables which are marked as READ or WRITE in the Cloud Thing will also have functions
187
187
which are called when their values are changed from the Dashboard.
188
188
These functions are generated with the Thing and added at the end of this sketch.
189
189
*/
@@ -251,4 +251,4 @@ In this tutorial you learned how to upload the temperature values from the Nicla
251
251
## Troubleshooting
252
252
253
253
### Arduino IoT Cloud
254
-
If you encounter any issue in the process of using the Arduino IoT Cloud, please visit the [IoT Cloud Getting started](/arduino-cloud/getting-started/iot-cloud-getting-started)
254
+
If you encounter any issue in the process of using the Arduino IoT Cloud, please visit the [IoT Cloud Getting started](https://docs.arduino.cc/arduino-cloud/getting-started/iot-cloud-getting-started)
0 commit comments