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: content/hardware/04.pro/boards/portenta-x8/tutorials/out-of-the-box/content.md
+86-25Lines changed: 86 additions & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -20,15 +20,14 @@ software:
20
20
21
21
## Connecting to the Board
22
22
23
-
Once the Portenta X8 is plugged in via USB, you can open your browser and go to http://192.168.7.1 and see a web page which is hosted by the board, from this dashboard you will be able to:
23
+
Once the Portenta X8 is plugged in via USB, you can open your browser and go to http://192.168.7.1if you use Windows and Linux or http://192.168.8.1 on MacOS. This web page is hosted on the Portenta X8, from this dashboard you will be able to:
24
24
25
25

26
26
27
-
28
27
*[Configure Wi-Fi](#connecting-to-your-wi-fi)
29
-
*[Register the factory (OTA)](#registering-a-factory)
28
+
*[Add your device to a factory (OTA)](#add-a-new-device-to-your-factory)
30
29
* Board details
31
-
* Shell
30
+
* Shell (alpine python)
32
31
33
32
## Connecting to Your Wi-Fi
34
33
@@ -44,45 +43,95 @@ Type the password.
44
43
45
44

46
45
47
-
Once its connected you should see the Wi-Fi status dot in the bottom left turn green.
46
+
Once it is connected, you should see the Wi-Fi status bullet in the bottom left turning green.
***You can change your network by clicking on the button again and repeat the above steps***
51
51
52
-
***You can change your network by clicking on the button again and repeat the steps***
52
+
## Connect to a Factory
53
53
54
-
##Registering a Factory
54
+
### Register the Factory on Foundries.io
55
55
56
-
Click the "Register with Factory" button.
56
+
Go to [https://create.arduino.cc](https://create.arduino.cc) and click on portenta-X8 board manager, you will get prompted to set a new `Factory` name if you didn't have one before. You will not be able to be change the name later, so use one that you can remember and write easily.
57
57
58
-

Click register, now you will get a code that you need to paste into your factory page by opening [Arduino Create Cloud](https://create.arduino.cc) in your browser and click the "Portenta X8 Board Manager" inside the integrations section.
Then choose the device you want to check by clicking on its box and it will open its page.
117
+
118
+

72
119
73
120
## Controlling Portenta X8 Through the Terminal
74
121
75
122
You have plenty of ways to communicate with your board, be it wirelessly or with a cable. Next we are going to show how to use adb and ssh.
76
123
77
124
### ADB
78
125
79
-
First of all make sure you have the latest **Mbed OS Portenta Core**, which contains the adb program.
126
+
First of all, make sure you have the latest **Mbed OS Portenta Core**, which contains the adb program.
80
127
You can go to its directory inside the **Arduino15/packages/arduino/tools/adb/32.0.0**. To check the tool you can use your teminal and type `adb`, you should get feedback from the tool when typing this.
81
128
82
129
To know the list of devices that can be accessed type `adb devices`.
83
130
84
131
If you only see one device you can try and type `adb shell`, you are now communicating with your Portenta X8.
85
132
133
+

134
+
86
135
### SSH
87
136
88
137
SSH is commonly used for remote control on different kinds of devices running different set ups through TCP-IP.
@@ -96,18 +145,30 @@ To gain admin (root) access, type `sudo su -` and the password is `fio` after t
0 commit comments