Skip to content

Commit b04d30e

Browse files
authored
Update README.md
Dashboard creation info. Typos fixed.
1 parent d4855ce commit b04d30e

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

python/gpio-basic/README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Select **Any Device** and follow the instructions on the wizard.
3131
> Note: Save your `Device ID` and `Secret Key` as they will be used in your python code.
3232
3333
### 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.
3535

3636
> Note: You can also create the Thing from the [Things list](https://app.arduino.cc/things) and associate it later.
3737
@@ -44,7 +44,7 @@ Add the variables by clicking on the ADD button. At the end of the process, your
4444
| led | Boolean | The variable that we will use to act over the physical LED |
4545
| test_value | Integer | This is a value that will change periodically in the application |
4646

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.
4848
4949
This is a screenshot for reference.
5050

@@ -115,11 +115,20 @@ BUTTON=15 # GPIO15, Pin 10
115115
chip = gpiod.Chip('/dev/gpiochip4')
116116
```
117117

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.
119119

120120
## 4. Create the Arduino Cloud dashboard
121121

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)
123132

124133
## 5. Test everything
125134

0 commit comments

Comments
 (0)