Skip to content

Commit 60aab9c

Browse files
committed
test /
1 parent 35d09e5 commit 60aab9c

File tree

1 file changed

+5
-5
lines changed
  • content/hardware/06.nicla/boards/nicla-sense-me/tutorials/connecting-to-iot-cloud

1 file changed

+5
-5
lines changed

content/hardware/06.nicla/boards/nicla-sense-me/tutorials/connecting-to-iot-cloud/content.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ In this tutorial you will learn how to upload data from the Nicla module to the
3333
- [Portenta H7](https://store.arduino.cc/products/portenta-h7)
3434
- [Nicla Sense ME](https://store.arduino.cc/products/nicla-sense-me)
3535
- ESLOV cable (included with the Nicla Sense ME)
36-
- USB-C® to USB-A `/` C depending on your hardware (Portenta H7)
36+
- USB-C® to USB-A - C depending on your hardware (Portenta H7)
3737
- USB-A to micro USB-A (Nicla Sense ME)
3838
- Wi-Fi Access point with access to the internet
3939
- [Arduino Cloud](https://create.arduino.cc/) account
@@ -87,7 +87,7 @@ void loop(){
8787

8888
### Set up the Arduino IoT Cloud
8989

90-
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).
9191

9292
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.
9393

@@ -111,7 +111,7 @@ First include the headers that you need and declare the temperature sensor by ad
111111
Sensor tempSensor(SENSOR_ID_TEMP);
112112
```
113113
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).***
115115
116116
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.
117117
@@ -183,7 +183,7 @@ The Sketch:
183183
184184
float temperature;
185185
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
187187
which are called when their values are changed from the Dashboard.
188188
These functions are generated with the Thing and added at the end of this sketch.
189189
*/
@@ -251,4 +251,4 @@ In this tutorial you learned how to upload the temperature values from the Nicla
251251
## Troubleshooting
252252

253253
### 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

Comments
 (0)