Skip to content

Commit 7c62bef

Browse files
Fixes
-Nested Lists -Title Case -Spelling -Assets
1 parent 7ec1755 commit 7c62bef

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

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

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -270,10 +270,8 @@ It may happen that you used your Nano ESP32 for other projects than Alvik, or yo
270270
1. Install the micropython bootloader on it following [this guide](https://docs.arduino.cc/micropython/basics/board-installation/).
271271

272272
2. Download the Alvik micropyton libraries
273-
274-
- Alvik micropython libraries from the [Alvik repository](https://github.com/arduino/arduino-alvik-mpy/tree/main)
275-
276-
- ucPack libraries from the [ucPack repository](https://github.com/arduino/ucPack-mpy/tree/main)
273+
Alvik micropython libraries from the [Alvik repository](https://github.com/arduino/arduino-alvik-mpy/tree/main)
274+
ucPack libraries from the [ucPack repository](https://github.com/arduino/ucPack-mpy/tree/main)
277275

278276

279277
3. Unzip both of the downloaded libraries in a single "Alvik" folder, open the Arduino Lab for MicroPython, go to the "files" tab and set the path to the unzipped folder on the Arduino Lab for Micropython
@@ -910,7 +908,7 @@ The `get_imu` function from the [Alvik API](https://docs.arduino.cc/tutorials/al
910908
**p**: pitch value
911909
**y**: yaw value
912910

913-
1. Retrieves 3-axial acceleration values
911+
2. Retrieves 3-axial acceleration values
914912

915913
The [`get_accelerations()`](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_accelerations) function returns the 3-axial acceleration of the IMU. This provides the acceleration values along the x, y, and z axes.
916914

@@ -919,7 +917,7 @@ The `get_imu` function from the [Alvik API](https://docs.arduino.cc/tutorials/al
919917
**ay**: acceleration on y
920918
**az**: acceleration on z
921919

922-
1. Retrieves 3-axial angular acceleration values
920+
3. Retrieves 3-axial angular acceleration values
923921

924922
The [`get_gyros()`](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_gyros) function returns the 3-axial angular acceleration of the IMU. This provides the angular acceleration values along the x, y, and z axes.
925923

@@ -928,7 +926,7 @@ The `get_imu` function from the [Alvik API](https://docs.arduino.cc/tutorials/al
928926
**gy**: angular acceleration on y
929927
**gz**: angular acceleration on z
930928

931-
2. Retrieves all IMU readouts including acceleration and angular acceleration
929+
4. Retrieves all IMU readouts including acceleration and angular acceleration
932930

933931
The [`get_imu()`](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_imu) function returns all the IMU's readouts, including both the acceleration and angular acceleration values.
934932

0 commit comments

Comments
 (0)