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
Copy file name to clipboardExpand all lines: python/gpio-basic/README.md
+13-4Lines changed: 13 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ Select **Any Device** and follow the instructions on the wizard.
31
31
> Note: Save your `Device ID` and `Secret Key` as they will be used in your python code.
32
32
33
33
### Create the Thing
34
-
In you recently created device page, go to the Associated Thing section, click on **Create Thing** and rename it.
34
+
In your recently created device page, go to the Associated Thing section, click on **Create Thing** and rename it.
35
35
36
36
> Note: You can also create the Thing from the [Things list](https://app.arduino.cc/things) and associate it later.
37
37
@@ -44,7 +44,7 @@ Add the variables by clicking on the ADD button. At the end of the process, your
44
44
| led | Boolean | The variable that we will use to act over the physical LED |
45
45
| test_value | Integer | This is a value that will change periodically in the application |
46
46
47
-
> Note: All the variables have to be READ-WRITE. You can define the periodicity you wish or set them with the policy ON-CHANGE.*
47
+
> Note: All the variables have to be READ-WRITE. You can define the periodicity you wish or set them with the policy ON-CHANGE.
48
48
49
49
This is a screenshot for reference.
50
50
@@ -115,11 +115,20 @@ BUTTON=15 # GPIO15, Pin 10
115
115
chip = gpiod.Chip('/dev/gpiochip4')
116
116
```
117
117
118
-
If you want to learn more, check the [Annex](https://github.com/dbduino-prjs/rpi-arduino-cloud/blob/develop/python/gpio-basic/README.md#notes) at the end of this doc.
118
+
If you want to learn more, check the [Annex](README.md#notes) at the end of this doc.
119
119
120
120
## 4. Create the Arduino Cloud dashboard
121
121
122
-
<TBD: Dashboard>
122
+
The dashboard that we are going to build will look like this
123
+
124
+
[Dashboard screenshot]
125
+
126
+
There are 2 ways to create the dashboard:
127
+
1. Create it manually. Replicate the one shown above following the instructions in [this guide](https://docs.arduino.cc/arduino-cloud/cloud-interface/dashboard-widgets/).
128
+
- The LED widgets should be linked to the variable led
129
+
- The Value widgets should be linked to the variable test_value
130
+
- The Button widgets should be linked to the variable button
131
+
3. Clone the one provided by this tutorial following the instructions in the [Annex](README.md#clone-the-dashboard-using-cloud-cli)
0 commit comments