Skip to content

Commit df168f8

Browse files
Asset fixes / Linter
-Local paths replaced and images added to /assets -Title case -Registered trademark added
1 parent 73116e0 commit df168f8

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

content/hardware/08.edu/solution-and-kits/alvik/tutorials/user-manual/user-manual.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Inside the Arduino Alvik package you'll find the following items:
2828

2929
- Alvik robot
3030
- 18650 Li-Ion battery attached to the robot
31-
- USB-C to USB-C cable
31+
- USB-C® to USB-C® cable
3232

3333
### Alvik Overview
3434

@@ -208,7 +208,7 @@ The connectors are placed in the back of the robot, the pinout is shown in the f
208208

209209
The Arduino Alvik robot package includes the following items:
210210
- Alvik robot
211-
- USB-C to USB-C cable
211+
- USB-C® to USB-C® cable
212212
- Phillips screwdriver
213213
- 18650 Li-Ion battery
214214

@@ -311,7 +311,7 @@ With this last step, your Nano ESP32 has been set up with the Alvik out of the b
311311

312312
After executing these commands, there will be updates of the process on the prompt, once the process finishes, the firmware of your alvik will be updated.
313313

314-
### Hello Alvik! Your first program!
314+
### Hello Alvik! Your First Program!
315315

316316
Alvik is intended to be programmed with MicroPyton. We recommend you to install the [Arduino Lab for MicroPython](https://labs.arduino.cc/en/labs/micropython) editor.
317317

@@ -320,15 +320,15 @@ Now that all the previous steps have been set, let's see how to create custom pr
320320

321321
**1. **Create an Alvik folder in your computer and set it as the path of the Arduino Lab for MicroPython IDE
322322

323-
![Adding Alvik folder path to the IDE](/Users/josegardel/Documents/arduino_GH/docs-content-private/content/hardware/08.edu/solution-and-kits/alvik/tutorials/getting-started/assets/alvik_folder_path.png)
323+
![Adding Alvik folder path to the IDE](assets/alvik_folder_path.png)
324324

325325
**2. **Create a new file "obstacle_avoider.py" in your local folder
326326

327-
![Creating obstacle_avoider.py file](/Users/josegardel/Documents/arduino_GH/docs-content-private/content/hardware/08.edu/solution-and-kits/alvik/tutorials/getting-started/assets/creating_file.png)
327+
![Creating obstacle_avoider.py file](assets/creating_file.png)
328328

329329
**3. **Double click on the file to open it. Once it is opened, erase the text on it and add the following code.
330330

331-
![Adding custom code](/Users/josegardel/Documents/arduino_GH/docs-content-private/content/hardware/08.edu/solution-and-kits/alvik/tutorials/getting-started/assets/adding_custom_code.gif)
331+
![Adding custom code](assets/adding_custom_code.gif)
332332

333333
``` python
334334
from arduino_alvik import ArduinoAlvik
@@ -373,13 +373,13 @@ while (True):
373373

374374
**4. **Connect Alvik to your PC using the cable included in the box, under the tray.
375375

376-
![Connecting Alvik to the PC](/Users/josegardel/Documents/arduino_GH/docs-content-private/content/hardware/08.edu/solution-and-kits/alvik/tutorials/getting-started/assets/connecting_alvik.gif)
376+
![Connecting Alvik to the PC](assets/connecting_alvik.gif)
377377

378378
***Make sure that Alvik is OFF before connecting it to your computer.***
379379

380380
**5. **Once Alvik is connected to the PC, connect it to the Arduino Lab for MicroPython and open the _main.py_ file in the Alvik folder. Once the file is opened let's replace the `import demo` statement by `import obstacle_avoider`.
381381

382-
![Connecting Alvik to the IDE](/Users/josegardel/Documents/arduino_GH/docs-content-private/content/hardware/08.edu/solution-and-kits/alvik/tutorials/getting-started/assets/connecting_alvik_ide.gif)
382+
![Connecting Alvik to the IDE](assets/connecting_alvik_ide.gif)
383383

384384
***If you want to go back to the out of the box experience where you could select between reg, green and blue programs, you only need to modify the _main.py_ again replacing the `import obstacle_avoider` statement by `import demo`***
385385

@@ -389,7 +389,7 @@ while (True):
389389

390390
You are now all set, disconnect Alvik from the computer, put some obstacles around Alvik, turn it ON and see how Alvik detects them and turns to avoid them.
391391

392-
## Deep dive programming Alvik
392+
## Deep Dive Programming Alvik
393393

394394
### Controlling the Motors
395395

0 commit comments

Comments
 (0)