Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 539ed3f

Browse files
committedMay 23, 2022
Add images and fix overview
1 parent da03a0b commit 539ed3f

File tree

1 file changed

+14
-6
lines changed
  • content/hardware/04.pro/boards/portenta-x8/tutorials/display-output-webgl

1 file changed

+14
-6
lines changed
 

‎content/hardware/04.pro/boards/portenta-x8/tutorials/display-output-webgl/content.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ hardware:
1717

1818
## Overview
1919

20-
[Docker](http://docker.com) Is a platform full of applications, called containers. Containers are isolated solutions and thus they don't have to depend on your environment. Making them portable and consistent throughout development, testing and production.
20+
The Arduino Portenta X8's Processor **NXP® i.MX 8M Mini Processor** Includes 3D rendering, this will allow us to display 3D content on a screen or video output.
2121

22-
You can download, install, use and share applications in the form of containers. You can find all the available containers on the [hub.docker.com](https://hub.docker.com) page.
22+
We will render web content from the internet that uses WebGL and display it on a screen, using an USB Hub.
2323

24-
In this tutorial we will go through the steps of how to install, run and remove the [Hello-World Container](https://hub.docker.com/_/hello-world)
24+
In this tutorial we will go through the steps of how to setup, install and modify the video output.
2525

2626
## Goals
2727

@@ -49,7 +49,7 @@ By default if you connect the board to a display you will see the "home-screen"
4949

5050
***You can interact with the interface by plugging USB devices on your hub, like a mouse and a keyboard.***
5151

52-
[X8 home-screen]()
52+
![X8 home-screen](assets/portentaX8-home-screen.PNG)
5353

5454
### Install The Container
5555

@@ -165,11 +165,13 @@ ssh fio@<portentaX8-IP>
165165
cd <containerPath>
166166
167167
//Edit the file with VIM
168-
vim docker
168+
vim docker-compose.yml
169169
```
170170

171171
Once you are inside the **VIM** editor, to edit the file you will need to press **insert** and replace the url as shown in the screenshot.
172172

173+
![VIM editing docker-compose.yml](assets\vim-edit-dockerCompose.png)
174+
173175
To save the changes press the **ESC** key and type `:wq` this will write and quit the **VIM** editor.
174176

175177
After editting it you will need to compose the container again.
@@ -184,4 +186,10 @@ In this tutorial you learned how to get the container onto your device, run it a
184186
- You could make an app that shows information about the weather in a web and having that on a display.
185187

186188
## Troubleshooting
187-
- If you tried to connect with `ssh` and you get a **fingerprint** issue you will need to remove the IP and fingerprint on your `.ssh` file, on windows the file is at `C:\Users\<yourUsername>\.ssh` and try again the **ssh** connection.
189+
- If you tried to connect with `ssh` and you get a **fingerprint** issue you will need to remove the IP and fingerprint on your `.ssh` file, on windows the file is at `C:\Users\<yourUsername>\.ssh\known_hosts` and try again the **ssh** connection.
190+
191+
Example:
192+
```
193+
//<portentaX8-ip> <type> <fingerprint>
194+
192.168.50.8 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAasdaddgre<kopPOTYAAABBBM8EZPWPKdRRGHpSMosJM08R1d10G0h5g5rE4cNjXdJtYpmJNOR+X2FhNRpEdvyDGHfSomJepbaqBoRcCi0Y7M=
195+
```

0 commit comments

Comments
 (0)
Please sign in to comment.